Chaining selectors in jQuery - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T06:37:12Zhttp://stackoverflow.com/feeds/question/700752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/700752/chaining-selectors-in-jquery3Chaining selectors in jQueryandi2009-03-31T12:47:06Z2009-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#7007676Answer by cobbal for Chaining selectors in jQuerycobbal2009-03-31T12:49:26Z2009-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#7007720Answer by Ólafur Waage for Chaining selectors in jQueryÓlafur Waage2009-03-31T12:50:01Z2009-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#7008033Answer by bdukes for Chaining selectors in jQuerybdukes2009-03-31T12:55:41Z2009-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>