IE and Mozilla share a similar DOM structure,
but Netscape differs in relation to how it interprates it's child
nodes. For example look at the following code.
IE interoperates the following code theadrow = e.srcElement.parentElement;
whereas Netscape and Mozilla use the following code theadrow = e.target.parentNode;
Although Netscape supports document.getElementById('id') ..
it does NOT support any of the other element code. You must use node manipulation
instead
For example colCount = theadrow.children.length; brings back
the length of an array of all the children in IE but you would have to
use the following code in Netscape and Mozilla is colCount = theadrow.cells.length; .
|