This question is somewhat related to my inquiry, but doesn't quite cover what I need to understand:
I have this HTML:
<div id="myDiv">
<img src="http://placekitten.com/g/200/200" />
</div>
I cached the DIV selector: var md = $('#myDiv');
How can I access the <img>
sub element using the cached DIV selector?
For eg, something like:
md.('img').fadeOut();
or
$(md + ' img').fadeOut();