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)
