JavaScript - Traversing the HTML DOM using childNodes causes errors in Non IE browsers - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T05:50:15Z http://stackoverflow.com/feeds/question/920478 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/920478/javascript-traversing-the-html-dom-using-childnodes-causes-errors-in-non-ie-bro 0 JavaScript - Traversing the HTML DOM using childNodes causes errors in Non IE browsers Shyju http://stackoverflow.com/users/40521 2009-05-28T11:49:49Z 2009-05-28T23:01:24Z <p>I have the following table being rendered in my browser. It's generated from the server side.</p> <pre><code>&lt;table id="tblQuestions" class="tblQuestionsContainer" border="0"&gt; &lt;tr&gt; &lt;td id="1" class="tdQuestion"&gt;Are u an indian citizen ?&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;&lt;table id="answer-1" border="0"&gt; &lt;tr&gt; &lt;td&gt;&lt;input id="answer-1_0" type="radio" name="answer-1" value="1" /&gt;&lt;label for="answer-1_0"&gt;Yes&lt;/label&gt;&lt;/td&gt;&lt;td&gt;&lt;input id="answer-1_1" type="radio" name="answer-1" value="0" /&gt;&lt;label for="answer-1_1"&gt;No&lt;/label&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td id="2" class="tdQuestion"&gt;Do you have a passport ?&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;&lt;table id="answer-2" border="0"&gt; &lt;tr&gt; &lt;td&gt;&lt;input id="answer-2_0" type="radio" name="answer-2" value="1" /&gt;&lt;label for="answer-2_0"&gt;Yes&lt;/label&gt;&lt;/td&gt;&lt;td&gt;&lt;input id="answer-2_1" type="radio" name="answer-2" value="0" /&gt;&lt;label for="answer-2_1"&gt;No&lt;/label&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Now I am using the following code in my JavaScript to validate the radio button's checked state.</p> <pre><code> var tblQuestionBoard=document.getElementById("tblQuestions"); tblAnswer = tblQuestionBoard.rows[1].childNodes[0].childNodes[0] </code></pre> <p>Now tblAnswer should be an object having the Table with id "answer-1"</p> <p>In IE, I am getting it. But in Mozilla and rest of the browsers I am getting it as undefined.</p> <p>How to solve this?</p> http://stackoverflow.com/questions/920478/javascript-traversing-the-html-dom-using-childnodes-causes-errors-in-non-ie-bro/920501#920501 5 Answer by Russ Cam for JavaScript - Traversing the HTML DOM using childNodes causes errors in Non IE browsers Russ Cam http://stackoverflow.com/users/1831 2009-05-28T11:55:11Z 2009-05-28T21:49:12Z <p>It's because you're using <code>childNodes</code> and whitespaces in the DOM are considered to be text nodes by Firefox et. al but not IE</p> <p>See <a href="http://stackoverflow.com/questions/868407/hide-an-elements-next-sibling-with-javascript/868418#868418">this answer</a> for an explanation</p> <p>My suggestions </p> <p>1.Set up some wrapper functions that ignore any <a href="http://www.javascriptkit.com/domref/nodetype.shtml" rel="nofollow"><code>nodeType</code></a> other than 1 (<code>ELEMENT_NODE</code>) to do DOM traversing. Something like</p> <pre><code>function child(elem, index) { // if index is not supplied, default is 1 // you might be more comfortable making this 0-based // in which case change i initial assignment value to 0 too index = index || 1; // get first child element node of elem elem = (elem.firstChild &amp;&amp; elem.firstChild.nodeType != 1) ? next(elem.firstChild) : elem.firstChild; // use the index to move to nth-child element node for(var i=1; i &lt; index;i++) { (function() { return elem = next(elem); })(); } return elem; } function next(elem) { do { elem = elem.nextSibling; } while (elem &amp;&amp; elem.nodeType != 1); return elem; } </code></pre> <p>and use like so - <a href="http://jsbin.com/ajafi" rel="nofollow"><strong>Working Demo</strong></a> - (Code at the bottom of the answer for reference)</p> <pre><code>&lt;table id="myTable"&gt; &lt;thead&gt; ... &lt;/thead&gt; &lt;tbody&gt; ... &lt;/tbody&gt; &lt;/table&gt; &lt;script type="text/javascript"&gt; child(document.getElementById('myTable'), 2); // will get the tbody &lt;/script&gt; </code></pre> <p>2.Use <code>getElementbyId()</code>, <code>getElementsByTagName()</code> or <code>getElementsByName()</code> instead of relying on position in the DOM</p> <p>3.Use a JavaScript library that abstracts away browser differences (<a href="http://www.jquery.com" rel="nofollow">jQuery</a> comes highly recommended)</p> <p><strong>The Demo Code</strong></p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;script type="text/javascript"&gt; window.onload = function() { document.getElementById('getCellContents').onclick = getCellContents; } function child(elem, index) { index = index || 1; elem = (elem.firstChild &amp;&amp; elem.firstChild.nodeType != 1) ? next(elem.firstChild) : elem.firstChild; for(var i=1; i &lt; index;i++) { (function() { return elem = next(elem); })(); } return elem; } function next(elem) { do { elem = elem.nextSibling; } while (elem &amp;&amp; elem.nodeType != 1); return elem; } function getCellContents() { var row = parseInt(document.getElementById('row').value, 10); var column = parseInt(document.getElementById('column').value, 10); var result; var color; var table = document.getElementById('table'); var cells = table.getElementsByTagName('td'); for (var i= 0; i &lt; cells.length; i++) { (function() { cells[i].bgColor = '#ffffff'; })(); } if (row &amp;&amp; column) { var tbody = child(table , 2); var selectedRow = (row &lt;= tbody.getElementsByTagName("tr").length)? child(tbody, row): null; var selectedCell = (selectedRow &amp;&amp; column &lt;= selectedRow.getElementsByTagName("td").length)? child(selectedRow, column): null; if (selectedRow &amp;&amp; selectedCell) { selectedCell.bgColor = '#00ff00'; result = selectedC