M
mel
Hi all,
One more of the strange things IE does differently than FF.
<html>
<body>
<ul id="ae">
<li>AEEE</li>
<li>AEEE2</li>
</ul>
<script language="javascript">
alert(document.getElementById("ae").innerHTML);
</script>
</body>
</html>
alerts correctly in FF
<li>AEEE</li>
<li>AEEE2</li>
and alerts weirdly in IE.
<li>AEEE
<li>AEEE2</li>
any ideas why and how to turn around it ?
One more of the strange things IE does differently than FF.
<html>
<body>
<ul id="ae">
<li>AEEE</li>
<li>AEEE2</li>
</ul>
<script language="javascript">
alert(document.getElementById("ae").innerHTML);
</script>
</body>
</html>
alerts correctly in FF
<li>AEEE</li>
<li>AEEE2</li>
and alerts weirdly in IE.
<li>AEEE
<li>AEEE2</li>
any ideas why and how to turn around it ?