jquery selectors -- finding a child of the root node - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T06:31:03Zhttp://stackoverflow.com/feeds/question/940752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node0jquery selectors -- finding a child of the root nodemorgancodes2009-06-02T17:16:21Z2009-09-14T01:11:18Z
<p>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.</p>
<p>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:</p>
<pre><code>jQuery("div > img", myDiv);
</code></pre>
<p>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?</p>
http://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node/940764#9407644Answer by Philippe Leybaert for jquery selectors -- finding a child of the root nodePhilippe Leybaert2009-06-02T17:18:52Z2009-06-02T17:18:52Z<p>You shouldn't repeat the div tag:</p>
<pre><code>jQuery("> img",myDiv);
</code></pre>
http://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node/940765#9407653Answer by Jon Erickson for jquery selectors -- finding a child of the root nodeJon Erickson2009-06-02T17:18:56Z2009-06-02T17:18:56Z<p>if mydiv is a reference to a jQuery object</p>
<pre><code>mydiv.children("img")
</code></pre>
<p>else</p>
<pre><code>$(mydiv).children("img")
jQuery(mydiv).children("img")
</code></pre>
http://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node/940770#9407700Answer by altCognito for jquery selectors -- finding a child of the root nodealtCognito2009-06-02T17:20:19Z2009-06-02T17:20:19Z<p>If you want only direct descendents, you want <a href="http://docs.jquery.com/Traversing/children#expr" rel="nofollow">children</a>.</p>
<pre><code>jQuery(myDiv).children('img')
</code></pre>
<p>or, if it's a jquery object...</p>
<pre><code>myDiv.children('img')
</code></pre>
<p>or, if not, you can also do...</p>
<pre><code>jQuery('>img', myDiv)
</code></pre>