IE is a little finicky with this script, requiring at least a valid URL HTML 4.01 transitional DOCTYPE and, if not valid markup, at least not markup that is wildly invalid. You can validate your markup here:
http://validator.w3.org/
But, even with some, or a lot of errors, you should be OK as long as you have a basically valid structure for your document. That means one and only one of each of the following type tags laid out in the following order:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
</body>
</html>
If any of you folks need more help:
Please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks