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.

link|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
feedback

5 Answers

up vote 6 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
link|improve this answer
thanks, works perfectly with eq function, or in jQuery selector argument ;) thanks! – Zlatan Omerović Sep 22 '11 at 12:12
feedback

I would try:

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

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

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

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

link|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
feedback

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/

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

Your Answer

 
or
required, but never shown

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