I have a number of DIVs on the page with class="row". I need a selector for one that had a child div with id="test".
<div class="row">
  <div class="col col-12">
    <div id="test">
      This is a test
    </div>
  </div>
</div>
How do I select that particular row?
div.row div#test 
did not work for me.
I tried accessing it using
$('div.row div#test ').show();
but nothing happened.
 
     
     
     
    