I have a layout similar to this:
and would like to use a jQuery selector to selec
You can use either of the following methods:
1 find():
$(this).find('img');
2 children():
$(this).children('img');