up vote 14 down vote favorite
3
share [g+] share [fb]

Say I have the following:

<ul>
 <li>First item</li>
 <li>Second item</li>
 <li>Third item</li>
</ul>

How would I select all the child elements after the first one using jQuery? So I can achieve something like:

<ul>
 <li>First item</li>
 <li class="something">Second item</li>
 <li class="something">Third item</li>
</ul>
link|improve this question

78% accept rate
feedback

7 Answers

up vote 28 down vote accepted

You should be able to use the "not" and "first child" selectors.

$("li:not(:first-child)").addClass("something");

http://docs.jquery.com/Selectors/not

http://docs.jquery.com/Selectors/firstChild

link|improve this answer
I tried this: $('.certificateList input:checkbox :not(:first-child)') but it didn't work.... – Chris Canal Oct 7 '08 at 13:27
1  
I was being an idiot. Thanks :) – Chris Canal Oct 7 '08 at 13:31
Will this be slower than the Slice method listed below? – Chris Marasti-Georg Oct 7 '08 at 13:59
Thanks you very much. this help me too... – GusDeCooL Oct 5 '10 at 7:56
feedback

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.

$("li").slice(1).addClass("something");

Average Time: 5.322ms

$("li:gt(0)").addClass("something");

Average Time: 5.590ms

$("li:not(:first-child)").addClass("something");

Average Time: 6.084ms

$("ul li+li").addClass("something");

Average Time: 7.831ms

link|improve this answer
Thanks for doing this! – Chris Marasti-Georg Oct 9 '08 at 15:30
I came across this question cause I needed to get all children but the first. I was doing this on all the h3's that were in a div. I ran three of the queries like you had above on my page and came away with :not(:first-child) as being the fastest by 2-3 times. I think the way your page is structured may also play in to profile speeds. Either way though this answer taught me how to use the Firebug profiler and I thank you for that. – RedWolves Jun 16 '09 at 14:59
feedback

http://docs.jquery.com/Traversing/slice

$("li").slice(1).addClass("something");
link|improve this answer
This is a nice answer, but I feel what I selected as the answer is the more explicit usage. Anyone new to the project will have quicker grasp on what is being done in the selector. – Chris Canal Oct 12 '08 at 1:24
feedback

A more elegant query (select all li elements that are preceded by a li element):

$('ul li+li')

link|improve this answer
1  
$("li+li") will likely work faster then $("li:not(:first-child)") – Sergey Ilinsky Oct 7 '08 at 13:46
feedback

This should work

$('ul :not(:first-child)').addClass('something');
link|improve this answer
feedback

This is what I have working so far

$('.certificateList input:checkbox:gt(0)')
link|improve this answer
feedback

i'd use

$("li:gt(0)").addClass("something");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.