What is the unique identifier for a DOM element/node - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:51:16Zhttp://stackoverflow.com/feeds/question/881768http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/881768/what-is-the-unique-identifier-for-a-dom-element-node0What is the unique identifier for a DOM element/nodeAnnibigi2009-05-19T09:22:11Z2009-05-19T10:33:14Z
<p>I am traversing a HTML document using javascript DOM.
I want make a list (an array actually) of all nodes/elements and thier values.
On w3schools website i found a script for traversing DOM but how do i store each node value in an array.
I can't seem to find the unique identifier for a node.
Anyone has any pointers?
I was thinking of xpath or sumthing.</p>
<p>Is it a good idea to consider xpath for node as the unique identifier.
If so how do i get xpath of a element while traversing the DOM.</p>
<p>thanks in advance for your help</p>
http://stackoverflow.com/questions/881768/what-is-the-unique-identifier-for-a-dom-element-node/881954#8819543Answer by harshath.jr for What is the unique identifier for a DOM element/nodeharshath.jr2009-05-19T10:22:40Z2009-05-19T10:22:40Z<p>As programmer born and brought up in the world of C and C++, my first answer to this kind of question would have been "store their addresses in the array!". But after a couple years of messing around with the web way of things, I can give the right answer:</p>
<p>In javascript, you can directly store the <i>references</i> to the objects in the array.
And no, xpath is not a good idea for this; using references is simpler and better.
So a direct answer to your question is: there is no unique identifier for a DOM element/node except <i>itself</i>.</p>
<p>In javascript, all objects are passed around by reference. So here's a sample code for how to do it:</p>
<pre><code>var theArray = [];
var theNodeToTraverse = document.getElementById('domelementtosearch');
traverseAndStore(theNodeToTraverse);
function traverseAndStore( node )
{
if( node==null) return;
theArray[ theArray.length ] = node;
for( i=0; i<node.childNodes.lenght; i++ )
traverseAndStore( node.childNodes[i] );
}
</code></pre>
<p>Thats it, folks!</p>
<p>cheers, jrh </p>