Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

up vote 65 down vote accepted

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

$("a").slice(0,20)
share|improve this answer
10  
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

Use lt pseudo selector:

$("a:lt(n)")

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

share|improve this answer
3  
According to the jQuery Docs, .slice is faster in modern browsers. – Blaise Jul 19 '11 at 13:43
I like the use of jQuery style, it's more elegant, than chaining. – Fedir Mar 28 at 13:41

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

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

JQuery Documentation

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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