Posted by Hanoi on 08/01/07 12:35
Hi,
I can't understand why the code below doesn't works in IE but It works
in Firefox.
<html>
<head><title></title>
<script>
function change(){
var divtext=document.getElementById("TEXT");
divtext.innerHTML="change<br>change<br>change<br>change";
}
</script>
</head>
<body onLoad="change();">
<table>
<tr><td>
<table>
<tr><td>CHANGE</td></tr>
<tr><td><div id='TEXT' style=" overflow-y: auto; height:
200px;"></div></td></tr>
</table>
</td></tr>
</table>
</body>
</html>
Thanks.
[Back to original message]
|