vote up 0 vote down star

It seems that this should be simple, but I'm having trouble figuring out how to construct a selector that will return only elements that are a direct child of a root node.

If, for example, I have a reference to a div (myDiv), and I want to select only images that are direct children of that div, the following doesn't work:

jQuery("div > img", myDiv);

The "div" in the selector doesn't seem to match the root of the context, only descendants, and without a selector that will give me the root, I can't use ">". Any other ideas on how to select a direct child of a context root?

flag

57% accept rate

3 Answers

vote up 4 vote down check

You shouldn't repeat the div tag:

jQuery("> img",myDiv);
link|flag
cool. thought I tried that, but guess I didn't. Seems to work. Thanks! – morgancodes Jun 2 at 18:37
vote up 0 vote down

If you want only direct descendents, you want children.

jQuery(myDiv).children('img')

or, if it's a jquery object...

myDiv.children('img')

or, if not, you can also do...

jQuery('>img', myDiv)
link|flag
vote up 3 vote down

if mydiv is a reference to a jQuery object

mydiv.children("img")

else

$(mydiv).children("img")
jQuery(mydiv).children("img")
link|flag

Your Answer

Get an OpenID
or

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