vote up 22 vote down star
12

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?

flag

60% accept rate

8 Answers

vote up 55 vote down check

The jQuery constructor accepts a 2nd parameter which can be used to override the context of the selection.

jQuery("img", this);
link|flag
4  
+1 Thanks, didn't know about this – Andreas Grech Sep 6 at 7:57
vote up 15 vote down

You could also use

$(this).find('img');

which would return all imgs that are descendants of the div

link|flag
vote up 8 vote down

Thanks maxam, I've found it with your start :)

jQuery(this).children("img")

link|flag
vote up 0 vote down

It's been some time, but have you tried $(this).children()[0] ?

link|flag
2  
that would work although it returns a dom element not a jq object – redsquare Nov 20 '08 at 21:07
vote up 0 vote down

$("#"+$(this).attr("id")+" img:first")

thank you so much for that. idk how to get the id attribute. I used it like this $("a.delete").click(function(event) { removePicture($("#divImage"+$(this).attr("id"))); event.preventDefault(); });

link|flag
vote up -1 vote down

Without knowing the ID of the DIV I think you could select the IMG like this:

$("#"+$(this).attr("id")+" img:first")
link|flag
2  
this probably actually works but it's kinda the Rube Goldberg answer :) – Scott Evernden Apr 9 at 0:39
vote up -2 vote down

Yup, $(this).find('img'); works well. Thanks!

link|flag
vote up -5 vote down

THX, it helped me too.

link|flag
this is not a forum. – tharkun Oct 12 at 5:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.