Have a look at my HTML code...
Now see what i am getting in Mozilla 2.0 and IE 6.0
In Mozilla it shows 2 (it's ovious, first child is textNode and next child is "TABLE"), but in IE it shows 1 .. only the child "TABLE".
How do i solve this?
Code:
<TD some..attributes ..... id="my_TD"> <TABLE ... > . . </TABLE> </TD>
Code:
alert(document.getElementById('my_ID').childNodes.length);
How do i solve this?
Comment