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

In straight up javascript (i.e., no extensions such as jQuery, etc.), is there a way to determine a child node's index inside of its parent node without iterating over and comparing all children nodes?

E.g.,

var child = document.getElementById('my_element');
var parent = child.parentNode;
var children = parent.children;
var count = children.length;
var child_index;
for (var i = 0; i < count; i++) {
  if (child === children[i]) {
    child_index = i;
    break;
  }
}

Is there a better way to determine the child's index? (in either Firefox or Chrome)

share|improve this question
Stop writing tags in titles please. – Lightness Races in Orbit May 6 '11 at 16:01

1 Answer

up vote 17 down vote accepted

you can use the previousSibling property to iterate back through the siblings until you get back null and count how many siblings you've encountered:

var i = 0;
while( (child = child.previousSibling) != null ) 
  i++;
//at the end i will contain the index.

Please note that in languages like Java, there is a getPreviousSibling() function, however in JS this has become a property -- previousSibling.

share|improve this answer
Sorry I just realised previousSibling in JavaScript is a property -- so there is no getPreviousSibling() function -- just updated the code. – Liv May 6 '11 at 16:04
1  
Yep. You've left a getPreviousSibling() in the text though. – Tim Down May 6 '11 at 16:06
well spotted Tim -- just correcting that now. – Liv May 6 '11 at 16:08
this approach requires the same number of iterations to determine the child index, so i can't see how it would be much faster. – Michael May 10 at 21:04

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.