Order of DOM NodeList returned by getChildNodes() - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T02:33:42Zhttp://stackoverflow.com/feeds/question/66032http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes2Order of DOM NodeList returned by getChildNodes()Adrian Mouat2008-09-15T19:36:44Z2008-09-15T21:00:33Z
<p>The DOM method <code>getChildNodes()</code> returns a <code>NodeList</code> of the children of the current <code>Node</code>. Whilst a <code>NodeList</code> is ordered, is the list guaranteed to be in document order?</p>
<p>For example, given <code><a><b/><c/><d/></a></code> is <code>a.getChildNodes()</code> guaranteed to return a <code>NodeList</code> with <code>b</code>, <code>c</code> and <code>d</code> <em>in that order</em>?</p>
<p>The <a href="http://java.sun.com/javase/6/docs/api/org/w3c/dom/Node.html#getChildNodes()" rel="nofollow">javadoc</a> isn't clear on this.</p>
http://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes/66112#661121Answer by John Millikin for Order of DOM NodeList returned by getChildNodes()John Millikin2008-09-15T19:43:07Z2008-09-15T19:43:07Z<p>A document-ordered node list is the behavior in other implementations of the DOM, such as Javascript's or Python's. And a randomly-ordered node list would be utterly useless. I think it's safe to depend on nodes being returned in document order.</p>
http://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes/66116#661163Answer by sblundy for Order of DOM NodeList returned by getChildNodes()sblundy2008-09-15T19:43:42Z2008-09-15T21:00:33Z<p>In my experience, yes. The <a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1451460987" rel="nofollow">DOM spec</a> isn't any clearer. If you're paranoid, try something like</p>
<pre><code>current = node.firstChild;
while(null != current) {
...
current = current.nextSibling;
}
</code></pre>
http://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes/66146#661460Answer by EBGreen for Order of DOM NodeList returned by getChildNodes()EBGreen2008-09-15T19:45:50Z2008-09-15T19:45:50Z<p>My experience is that every time that I have bothered to look it has been in document order. However, I believe that I read somewhere it is not guaranteed to be in document order. I can't find where I read that right now, so take it as hearsay. I think your best bet if you <strong>must</strong> have them in document order would be to use FirstChild then NextSibling until there are no more sibs.</p>
http://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes/66157#661570Answer by Calum for Order of DOM NodeList returned by getChildNodes()Calum2008-09-15T19:46:48Z2008-09-15T19:46:48Z<p>I'd love to tell you that this is guaranteed (as I believe it is) but the <a href="http://www.w3.org/DOM/" rel="nofollow">Document Object Model specification</a> itself seems ambiguous in this case. I'm pretty sure that it's always document-order, though.</p>
http://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes/66160#661600Answer by BrewinBombers for Order of DOM NodeList returned by getChildNodes()BrewinBombers2008-09-15T19:46:51Z2008-09-15T19:46:51Z<p>In your example, as presented. I believe so. However, I've experienced real-world experiences where spaces have been interpreted as nodes so:</p>
<p><pre><code>
<a><b/><c/><d/></a>
</pre></code></p>
<p>is different than</p>
<p><pre><code>
<a><b/> <c/><d/></a>
</pre></code></p>
<p>if you're looking at index [1], firefox and IE may present different results. I would advise against relying on the order depending on your need.</p>