Chaining selectors in jQuery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:37:12Z http://stackoverflow.com/feeds/question/700752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/700752/chaining-selectors-in-jquery 3 Chaining selectors in jQuery andi 2009-03-31T12:47:06Z 2009-03-31T12:55:41Z <p>I'm a guy used to mootools' way of chaining selectors, and I can't seem to find anywhere how to do the same in jQuery. Suppose I have a <em>select element</em> in the <code>selectObj</code> variable. What I need is to get the last option in that select. In mootools I would have done something like:</p> <pre><code>var option = $(selectObj).getElement('nth-child(last)') </code></pre> <p>Can I do something similar, or what is the way of getting that last <code>option</code> in jQuery?</p> <p>PS. I know about the <a href="http://docs.jquery.com/Selectors/child#parentchild" rel="nofollow">parent > child selector</a>, but I can't really use it because I don't know what selector has been used to get the <code>select</code>. I only have the resulting element.</p> http://stackoverflow.com/questions/700752/chaining-selectors-in-jquery/700767#700767 6 Answer by cobbal for Chaining selectors in jQuery cobbal 2009-03-31T12:49:26Z 2009-03-31T12:49:26Z <pre><code>var option = $(selectObj).children(":last"); </code></pre> <p>will return the last child of any element</p> http://stackoverflow.com/questions/700752/chaining-selectors-in-jquery/700772#700772 0 Answer by Ólafur Waage for Chaining selectors in jQuery Ólafur Waage 2009-03-31T12:50:01Z 2009-03-31T12:50:01Z <p>jQuery has the <a href="http://docs.jquery.com/Selectors/last" rel="nofollow">:last Selector</a></p> <pre><code>$("tr:last").stuff() </code></pre> <p>Will do stuff to the last row in a table.</p> http://stackoverflow.com/questions/700752/chaining-selectors-in-jquery/700803#700803 3 Answer by bdukes for Chaining selectors in jQuery bdukes 2009-03-31T12:55:41Z 2009-03-31T12:55:41Z <pre><code>$(selectObj).find(':last') </code></pre> <p>You can use <a href="http://docs.jquery.com/Traversing/find#expr" rel="nofollow"><code>find</code></a> to perform another query within the current query.</p> <p>In general, you can check out the <a href="http://docs.jquery.com/Selectors" rel="nofollow">Selectors</a> and <a href="http://docs.jquery.com/Traversing" rel="nofollow">Traversal</a> pages on jQuery docs when you're trying to figure out how to select something.</p>