Order of DOM NodeList returned by getChildNodes() - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:33:42Z http://stackoverflow.com/feeds/question/66032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes 2 Order of DOM NodeList returned by getChildNodes() Adrian Mouat 2008-09-15T19:36:44Z 2008-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>&lt;a&gt;&lt;b/&gt;&lt;c/&gt;&lt;d/&gt;&lt;/a&gt;</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#66112 1 Answer by John Millikin for Order of DOM NodeList returned by getChildNodes() John Millikin 2008-09-15T19:43:07Z 2008-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#66116 3 Answer by sblundy for Order of DOM NodeList returned by getChildNodes() sblundy 2008-09-15T19:43:42Z 2008-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#66146 0 Answer by EBGreen for Order of DOM NodeList returned by getChildNodes() EBGreen 2008-09-15T19:45:50Z 2008-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#66157 0 Answer by Calum for Order of DOM NodeList returned by getChildNodes() Calum 2008-09-15T19:46:48Z 2008-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#66160 0 Answer by BrewinBombers for Order of DOM NodeList returned by getChildNodes() BrewinBombers 2008-09-15T19:46:51Z 2008-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> &lt;a&gt;&lt;b/&gt;&lt;c/&gt;&lt;d/&gt;&lt;/a&gt; </pre></code></p> <p>is different than</p> <p><pre><code> &lt;a&gt;&lt;b/&gt; &lt;c/&gt;&lt;d/&gt;&lt;/a&gt; </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>