JavaScript - Traversing the HTML DOM using childNodes causes errors in Non IE browsers - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T05:50:15Zhttp://stackoverflow.com/feeds/question/920478http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/920478/javascript-traversing-the-html-dom-using-childnodes-causes-errors-in-non-ie-bro0JavaScript - Traversing the HTML DOM using childNodes causes errors in Non IE browsersShyjuhttp://stackoverflow.com/users/405212009-05-28T11:49:49Z2009-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><table id="tblQuestions" class="tblQuestionsContainer" border="0">
<tr>
<td id="1" class="tdQuestion">Are u an indian citizen ?</td>
</tr><tr>
<td><table id="answer-1" border="0">
<tr>
<td><input id="answer-1_0" type="radio" name="answer-1" value="1" /><label for="answer-1_0">Yes</label></td><td><input id="answer-1_1" type="radio" name="answer-1" value="0" /><label for="answer-1_1">No</label></td>
</tr>
</table></td>
</tr><tr>
<td id="2" class="tdQuestion">Do you have a passport ?</td>
</tr><tr>
<td><table id="answer-2" border="0">
<tr>
<td><input id="answer-2_0" type="radio" name="answer-2" value="1" /><label for="answer-2_0">Yes</label></td><td><input id="answer-2_1" type="radio" name="answer-2" value="0" /><label for="answer-2_1">No</label></td>
</tr>
</table></td>
</tr>
</table>
</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#9205015Answer by Russ Cam for JavaScript - Traversing the HTML DOM using childNodes causes errors in Non IE browsersRuss Camhttp://stackoverflow.com/users/18312009-05-28T11:55:11Z2009-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 && elem.firstChild.nodeType != 1) ?
next(elem.firstChild) :
elem.firstChild;
// use the index to move to nth-child element node
for(var i=1; i < index;i++) {
(function() {
return elem = next(elem);
})();
}
return elem;
}
function next(elem) {
do {
elem = elem.nextSibling;
} while (elem && 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><table id="myTable">
<thead>
...
</thead>
<tbody>
...
</tbody>
</table>
<script type="text/javascript">
child(document.getElementById('myTable'), 2); // will get the tbody
</script>
</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><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript">
window.onload = function() {
document.getElementById('getCellContents').onclick = getCellContents;
}
function child(elem, index) {
index = index || 1;
elem = (elem.firstChild && elem.firstChild.nodeType != 1) ?
next(elem.firstChild) :
elem.firstChild;
for(var i=1; i < index;i++) {
(function() {
return elem = next(elem);
})();
}
return elem;
}
function next(elem) {
do {
elem = elem.nextSibling;
} while (elem && 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 < cells.length; i++) {
(function() {
cells[i].bgColor = '#ffffff';
})();
}
if (row && column) {
var tbody = child(table , 2);
var selectedRow = (row <= tbody.getElementsByTagName("tr").length)? child(tbody, row): null;
var selectedCell = (selectedRow && column <= selectedRow.getElementsByTagName("td").length)? child(selectedRow, column): null;
if (selectedRow && selectedCell) {
selectedCell.bgColor = '#00ff00';
result = selectedC