Select all child elements except the first - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T21:12:54Zhttp://stackoverflow.com/feeds/question/178407http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first5Select all child elements except the firstChris Canal2008-10-07T13:21:20Z2008-10-09T12:26:55Z
<p>Say I have the following:</p>
<pre><code><ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ul>
</code></pre>
<p>How would I select all the child elements after the first one using jQuery? So I can achieve something like:</p>
<pre><code><ul>
<li>First item</li>
<li class="something">Second item</li>
<li class="something">Third item</li>
</ul>
</code></pre>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178422#1784225Answer by insin for Select all child elements except the firstinsin2008-10-07T13:24:49Z2008-10-07T13:24:49Z<p><a href="http://docs.jquery.com/Traversing/slice" rel="nofollow">http://docs.jquery.com/Traversing/slice</a></p>
<pre><code>$("li").slice(1).addClass("something");
</code></pre>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178425#1784259Answer by twernt for Select all child elements except the firsttwernt2008-10-07T13:25:15Z2008-10-07T13:25:15Z<p>You should be able to use the "not" and "first child" selectors.</p>
<pre><code>$("li:not(:first-child)").addClass("something");
</code></pre>
<p><a href="http://docs.jquery.com/Selectors/not" rel="nofollow">http://docs.jquery.com/Selectors/not</a></p>
<p><a href="http://docs.jquery.com/Selectors/firstChild" rel="nofollow">http://docs.jquery.com/Selectors/firstChild</a></p>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178435#1784350Answer by Chris Canal for Select all child elements except the firstChris Canal2008-10-07T13:27:49Z2008-10-07T13:27:49Z<p>This is what I have working so far</p>
<pre><code>$('.certificateList input:checkbox:gt(0)')
</code></pre>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178445#1784451Answer by Pat for Select all child elements except the firstPat2008-10-07T13:29:13Z2008-10-07T13:29:13Z<p>This should work </p>
<pre><code>$('ul :not(:first-child)').addClass('something');
</code></pre>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178498#1784984Answer by Sergey Ilinsky for Select all child elements except the firstSergey Ilinsky2008-10-07T13:45:04Z2008-10-07T13:45:04Z<p>A more elegant query (select all li elements that are preceded by a li element): </p>
<p><code>
$('ul li+li')
</code></p>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178723#1787230Answer by ignu for Select all child elements except the firstignu2008-10-07T14:31:45Z2008-10-07T14:31:45Z<p>i'd use</p>
<pre><code>$("li:gt(0)").addClass("something");
</code></pre>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/187027#1870273Answer by twernt for Select all child elements except the firsttwernt2008-10-09T12:26:55Z2008-10-09T12:26:55Z<p>Based on my totally unscientific analysis of the four methods here, it looks like there's not a lot of speed difference among them. I ran each on a page containing a series of unordered lists of varying length and timed them using the Firebug profiler.</p>
<pre><code>$("li").slice(1).addClass("something");
</code></pre>
<p>Average Time: 5.322ms</p>
<pre><code>$("li:gt(0)").addClass("something");
</code></pre>
<p>Average Time: 5.590ms</p>
<pre><code>$("li:not(:first-child)").addClass("something");
</code></pre>
<p>Average Time: 6.084ms</p>
<pre><code>$("ul li+li").addClass("something");
</code></pre>
<p>Average Time: 7.831ms</p>