up vote 336 down vote favorite
147
share [g+] share [fb]

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?

link|improve this question

77% accept rate
feedback

protected by Bill the Lizard Jun 10 '10 at 18:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

6 Answers

up vote 626 down vote accepted

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

jQuery("img", this);

Which is the same as

jQuery(this).find("img");

If the imgs are direct descendants of the clicked element, you can also use:

jQuery(this).children("img");
link|improve this answer
22  
+1 Thanks, didn't know about this – Andreas Grech Sep 6 '09 at 7:57
171  
for what it's worth: jQuery("img", this) is internally converted into: jQuery(this).find("img") So the second is ever so slightly faster. :) – Paul Irish Jan 8 '10 at 23:49
4  
Thanks @Paul, I was worried that using find() was wrong, turns out it's the only way ;) – Agos Feb 17 '10 at 11:36
Thanks, Simon. Big help. – j33r Aug 8 '10 at 4:03
If the node is a direct child, wouldn't it be fastest to just do $(this).children('img'); ? – adamyonk Aug 5 '11 at 11:58
show 1 more comment
feedback

You could also use

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

which would return all imgs that are descendants of the div

link|improve this answer
feedback

If you need to get the first img that's down exactly one level, you can do

$(this).children("img:first")
link|improve this answer
feedback

If your DIV tag is immediately followed by the IMG tag, you can also use:

$(this).next();
link|improve this answer
1  
With the amount of upvotes and favourites on this thread, I'm surprised you haven't got a single one. – logic-unit Aug 13 '11 at 21:04
2  
.next() is really fragile, unless you can always guarantee the element will be the next element, it's better to use a different method. In this case, the IMG is a descendant, not a sibling, of the div. – LocalPCGuy Dec 28 '11 at 18:12
feedback

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

$("#"+$(this).attr("id")+" img:first")
link|improve this answer
28  
this probably actually works but it's kinda the Rube Goldberg answer :) – Scott Evernden Apr 9 '09 at 0:39
1  
and if you are going to use that code, at least do: $("#" + this.id + " img:first") – LocalPCGuy Dec 28 '11 at 18:08
feedback

Try this code:

$(this).children()[0]
link|improve this answer
7  
that would work although it returns a dom element not a jq object – redsquare Nov 20 '08 at 21:07
I don't know if it is the best approach to the current situation, but if you want to go this route and still end up with a jQuery object, just wrap it that way: $($(this).children()[0]). – patridge Feb 24 '10 at 17:16
10  
or even easier $(this:first-child) – rémy May 11 '11 at 9:52
feedback

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