Select all child elements except the first - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T21:12:54Z http://stackoverflow.com/feeds/question/178407 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first 5 Select all child elements except the first Chris Canal 2008-10-07T13:21:20Z 2008-10-09T12:26:55Z <p>Say I have the following:</p> <pre><code>&lt;ul&gt; &lt;li&gt;First item&lt;/li&gt; &lt;li&gt;Second item&lt;/li&gt; &lt;li&gt;Third item&lt;/li&gt; &lt;/ul&gt; </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>&lt;ul&gt; &lt;li&gt;First item&lt;/li&gt; &lt;li class="something"&gt;Second item&lt;/li&gt; &lt;li class="something"&gt;Third item&lt;/li&gt; &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178422#178422 5 Answer by insin for Select all child elements except the first insin 2008-10-07T13:24:49Z 2008-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#178425 9 Answer by twernt for Select all child elements except the first twernt 2008-10-07T13:25:15Z 2008-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#178435 0 Answer by Chris Canal for Select all child elements except the first Chris Canal 2008-10-07T13:27:49Z 2008-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#178445 1 Answer by Pat for Select all child elements except the first Pat 2008-10-07T13:29:13Z 2008-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#178498 4 Answer by Sergey Ilinsky for Select all child elements except the first Sergey Ilinsky 2008-10-07T13:45:04Z 2008-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#178723 0 Answer by ignu for Select all child elements except the first ignu 2008-10-07T14:31:45Z 2008-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#187027 3 Answer by twernt for Select all child elements except the first twernt 2008-10-09T12:26:55Z 2008-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>