With Jquery, I need to select just the first "n" items from the page, for example the first 20 links instead of selecting all of them with the usual

$("a")

Sounds simple but the jQuery manual has no evidence of something like this.

link|improve this question

feedback

4 Answers

up vote 28 down vote accepted

You probably want to read up on slice. You code will something like this:

$("a").slice(0,20)
link|improve this answer
7  
Though the :lt(20) approach looks much cleaner, using slice is much more efficient if you have a large result set to start with. Unfortunately, when evaluating ":lt" and other positional selectors, jQuery loops through the entire set, even if it's just getting the first element. I've written more about this on my blog here: spadgos.com/?p=51 – nickf Dec 8 '09 at 8:46
1  
oh, and here's a demonstration of what i'm talking about, this time with graphs: fisher.spadgos.com/jquery/jquery-first-vs-eq.html – nickf Dec 8 '09 at 8:48
1  
Thank you, a side requirement of my request was about performances, so this the right answer for me. Thanks to the others for pointing out the :lt selector too. – UVL Dec 8 '09 at 10:33
feedback

Use lt pseudo selector:

$("a:lt(n)")

This matches the elements before the nth one (the nth element excluded). Numbering starts from 0.

link|improve this answer
According to the jQuery Docs, .slice is faster in modern browsers. – Blaise Jul 19 '11 at 13:43
feedback

Try the :lt selector: http://docs.jquery.com/Selectors/lt#index

$('a:lt(20)');
link|improve this answer
feedback
$("a:lt(n)")

JQuery Documentation

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.