I have the following JavaScript code.
var myCellCollection = document.getElementById('myTbl').cells;
This works well in IE and it returns a collection of table cells. But the same line returns “undefined” in Firefox. I am using IE 9 and Firefox 12.
You should use
document.getElementById("myTbl").getElementsByTagName('td');