Yeah, Mike's right. This is wrong:
Code:
<script src="super.js" type="text/javascript"/>
<!--[if IE]>
<meta http-equiv="refresh" content="0;url=ieusers.html">
<![endif]-->
<script src="menu.js" type="text/javascript"/>
It should be:
Code:
<script src="super.js" type="text/javascript"></script>
<script src="menu.js" type="text/javascript"></script>
Then you wouldn't even need the redirect.
From the point of view of proper coding, there are other problems. But that change will allow the page to render fine in IE.
You may not want to code to spec. But, at least don't use self closing tags for tags that normally have a separate closing tag.
Bookmarks