vote up 2 vote down star

Say I have a div containing an unlimited number of child divs. Is there an easy way to get jQuery to select the nth div and every div after it so I can change those (in this case, call remove() on old divs)?

flag

3 Answers

vote up 12 vote down check

You can use the ":gt()" selector:

 // div's 10 and higher
 $('div:gt(9)').show()
link|flag
Works like a charm, thanks! – ceejayoz Jan 19 at 20:02
vote up 2 vote down

Typing this out of my head and the jQuery API doc (read: this is not tested), but the first thing I'd do is to

$('#container div').slice(-n).remove();
link|flag
Worked, but I'm going to go with the :gt() selector @Rob posted. Thanks though, have an upvote! – ceejayoz Jan 19 at 20:03
yepp. the :gt() solution is much better because it does not retrieve elements just to throw them away afterwards. This is why I have upvoted Rob's answer too. Next time, I'll refrain from posting answers I don't really know. – pilif Jan 19 at 20:15
vote up 2 vote down

Or if you need to do something with all divs first:

$('div').css('color', 'red').filter(':gt(5)').remove();
link|flag

Your Answer

Get an OpenID
or

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