Welcome Guest Search | Active Topics | Sign In | Register

IE8 Error Options
jstacklin
Posted: Thursday, March 6, 2008 7:23:57 AM
Rank: Newbie
Groups: Member

Joined: 3/6/2008
Posts: 3
I was just trying IE8 to get ready for the changes and found problems with my menu displaying. Seems to do the same thing here on your homepage and on the Live Demo. Please help!

Thanks,

Jeff
eo_support
Posted: Thursday, March 6, 2008 8:02:19 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,095
Hi Jeff,

Thanks for posting in the forum. That is an IE 8 bug and we would expect Microsoft to be able to fix it before final release. You can use the following code to reproduce the bug easily without using our controls at all:

Code: HTML/ASPX
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
</head>
<body>
    <script>
    function test()
    {
        var table = document.getElementById("testTable");
        window.alert(table.rows.length);
    }
    </script>

    <table id="testTable">
        <tr>
            <td onclick="test()">test</td>
        </tr>
    </table>
</body>
</html>


It appears that you can not access table.rows when in standard compliant mode. When you click "test", it calls the JavaScript function to access table.rows and an error occurs. table.rows is clearly defined in W3C DOM level 1.

Thanks


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.