14
Sep
Learn how to use $(this) selector and children?
<div id="learnhow2do"><img src="..." alt="" /></div>
Here is the way to use a selector to select the child img of the div.
jQuery('#learnhow2do').find("img");
OR
jQuery('#learnhow2do').children("img");