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

I have this:

<ul>
    <li>first</li>
    <li>second</li>
    <li>third</li>
    <li>fourth</li>
</ul>

Then I select it all with jQuery: $('ul').find('li'); or $('ul li');

How can I, from those two jQuery selectors get the, for instance only second li, or third, and to leave first and fourt alone?

I thought it might work with:

$('myselector').get(indexNumber); // however, it won't work.

Any ideas for this issue? Thanks.

share|improve this question
1  
What doesn't work? That is correct. In fact that is almost the exact example on jquery's page? api.jquery.com/get – Kyle Rogers Sep 22 '11 at 12:08
somehow it doesn't work... do not know why! – Zlatan Omerović Sep 22 '11 at 12:08
my example: $('li').get(0).show(); ? returns that it's not a function at all. – Zlatan Omerović Sep 22 '11 at 12:09
it works with eq and nth-child though. :) thanks! – Zlatan Omerović Sep 22 '11 at 12:11
1  
try to alert($('ul li').get(0)) what it will give you – Hiyasat Sep 22 '11 at 12:12

5 Answers

up vote 7 down vote accepted

The get method returns the DOM element, so then you would have to wrap it inside a new jQuery object.

You can use the eq method:

var j = $('ul li').eq(1); // gets the second list item
share|improve this answer
thanks, works perfectly with eq function, or in jQuery selector argument ;) thanks! – Zlatan Omerović Sep 22 '11 at 12:12

Use :eq() Selector. For for example, for second element use:

 $("ul li:eq(1)"); 
share|improve this answer
thank you as well! – Zlatan Omerović Sep 22 '11 at 12:13

I would try:

$("ul li:nth-child(2)")
share|improve this answer
thanks Manual! :D – Zlatan Omerović Sep 22 '11 at 12:12

$('li').get(0) will return plain DOM element. you cannot call jQuery methods on same.

share|improve this answer
thank you for the tip man, I didn't know it before man. thanks man! – Zlatan Omerović Sep 22 '11 at 12:16

you can use nth-child

$("ul li:nth-child(2)") //this will select second child because it is 1 based index

here is a fiddle http://jsfiddle.net/xyyWh/

share|improve this answer
thanks man! this works as well man! – Zlatan Omerović Sep 22 '11 at 12:16

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.