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?
|
feedback
|
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.
|
The jQuery constructor accepts a 2nd parameter which can be used to override the context of the selection.
Which is the same as
If the imgs are direct descendants of the clicked element, you can also use:
| |||||||||||||||||
feedback
|
|
You could also use
which would return all | |||
|
feedback
|
|
If you need to get the first
| |||
|
feedback
|
|
If your DIV tag is immediately followed by the IMG tag, you can also use:
| |||||||||
feedback
|
|
Without knowing the ID of the DIV I think you could select the IMG like this:
| |||||||||
feedback
|
|
Try this code:
| |||||||||||
feedback
|