jquery selectors -- finding a child of the root node - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T06:31:03Z http://stackoverflow.com/feeds/question/940752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node 0 jquery selectors -- finding a child of the root node morgancodes 2009-06-02T17:16:21Z 2009-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 &gt; 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#940764 4 Answer by Philippe Leybaert for jquery selectors -- finding a child of the root node Philippe Leybaert 2009-06-02T17:18:52Z 2009-06-02T17:18:52Z <p>You shouldn't repeat the div tag:</p> <pre><code>jQuery("&gt; img",myDiv); </code></pre> http://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node/940765#940765 3 Answer by Jon Erickson for jquery selectors -- finding a child of the root node Jon Erickson 2009-06-02T17:18:56Z 2009-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#940770 0 Answer by altCognito for jquery selectors -- finding a child of the root node altCognito 2009-06-02T17:20:19Z 2009-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('&gt;img', myDiv) </code></pre>