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 Duplicates:
How to get index of <li> element
jQuery - get the index of a element with a certain class

I have:

<ul id="parent">
     <li id="li1">li1</li>
     <li id="li2">li2</li>
     <li id="li3">li3</li>
</ul>

There are some other <ul> and <li> tags elsewhere.

I want to get the index of li2 which is in the <ul> with id parent using jQuery

share|improve this question
yeah, go back to your previous questions and click some checkmarks :) – pixelbobby May 6 '11 at 16:25

marked as duplicate by Phrogz, Felix Kling, Mark Biek, McDowell, NikiC May 7 '11 at 20:36

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.

3 Answers

up vote 4 down vote accepted

OLD simple answer: $('ul#parent li:eq(1)').index()

NEW $('#li2').index()

share|improve this answer
This answer assumes you know the index before trying to get the index. – jessegavin May 6 '11 at 16:18
That is somehow redundant (in a one level list). You are accessing the second li element(li:eq(1)) to get its index which will be 1 too. – Felix Kling May 6 '11 at 16:18
1  
@jessegavin No it doesn't; it's only an example of requesting any particular element, but then asking for its index. – Phrogz May 6 '11 at 16:18
1  
new: works. @Pixel bobby thanks alot. i was struggling for last1 hr – user695663 May 6 '11 at 16:47
Thanks. Happy Coding. – pixelbobby May 6 '11 at 16:57
show 1 more comment

Use .index():

$('#li2').index();

IDs have to be unique so in case they are not in your HTML, you better fix this (e.g. by using classes).

share|improve this answer
+1 simple and gets it done. – pixelbobby May 6 '11 at 16:23
1  
-1 This question has been asked and answered repeatedly. Felix, you don't need more rep (OK, we all need more rep :) but closing as a duplicate is more beneficial to the site than re-answering a common question. – Phrogz May 6 '11 at 16:29
@Phrogz: You are right, the questions are all very similar but the context is always a bit different. However I found a question that is very close to this one: stackoverflow.com/questions/3204349/… – Felix Kling May 6 '11 at 16:39
var index = $("#li2").prevAll().length;  //assuming 0 based index
share|improve this answer

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