Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Selecting the first ā€œnā€ items with jQuery

I have an infinite countable list of elements!

Is there a function to find x elements from the head of the list and stop!

$('.elements').find('li').limit(10)

I tried the goog but i could not be specific enough with the ? !

share|improve this question
2  
"I tried the good but i could not be specific enough with the ? !" What does this mean? – Felix Kling Dec 22 '12 at 19:22

marked as duplicate by Felix Kling, undefined, Donal Fellows, Kaarel, Bo Persson Dec 22 '12 at 22:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

Yes, you can use jQuery's custom :lt selector for that.

For instance, this will find only the first three lis in the given target list:

var firstThree = $("#target li:lt(3)");

Live Example | Source

share|improve this answer

Try jQuery slice. Your code will something like this:

$('.elements').find('li').slice(0,10);
share|improve this answer

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