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

How can you get the child number of the selected element, e.g.

<ul>
    <li>First child</li>
    <li>Second</li>
    <li id="selected">Third child</li>
    <li>Fourth child</li>
</ul>

Using something like this:

$('#selected').childNumber();

That should return "3" for it's parent wrap, regarding the child number.

share|improve this question

1 Answer

up vote 26 down vote accepted

You can use .index() for this.

var selectedIndex = $("#selected").index() + 1;

Since you have given an id for the li there is no need for the element selector with ul. You can directly use the id selector for the li element.

share|improve this answer
Simple and effective, thanks. :) – Burning the Codeigniter Jan 11 '11 at 4:05
1  
its always better to use the type selector too to improve the search speeds, $("li#selected") should be quicker than $("#selected"). – shortstick Aug 1 '11 at 7:31
9  
@shortstick not with id-selectors ('#') which uses native function getElementByID which is faster. – HerrSerker Dec 21 '11 at 15:35

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.