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?
|
12
|
|
|
|
|
|
The jQuery constructor accepts a 2nd parameter which can be used to override the context of the selection.
|
||||
|
|
|
You could also use
which would return all |
||
|
|
|
|
Thanks maxam, I've found it with your start :)
|
||
|
|
|
|
It's been some time, but have you tried $(this).children()[0] ? |
||||
|
|
|
$("#"+$(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(); }); |
||
|
|
|
|
Without knowing the ID of the DIV I think you could select the IMG like this:
|
||||
|
|
|
Yup, $(this).find('img'); works well. Thanks! |
||
|
|
|
|
THX, it helped me too. |
||
|