jQuery $(this) selector and children?
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2008-11-20T19:44:05Z
Indexed on
2010/06/10
11:42 UTC
Read the original article
Hit count: 237
I'd like to use a selector to select the child img of the div I'm clicking on this example:
<div id="..."><img src="..."></div>
To get the div, I've got this selector:
$(this)
How do I get the img with a selector?
© Stack Overflow or respective owner