Hi,
I have been having this weird problem in IE. when I load the page,which basically doesn't use much other than the tool tip...the page hangs in the middle of the load and the html becomes visible without being parsed. But when I refresh it, it loads just fine. I turned on the debug to see if there was some hidden error but there is just nothing there. This happens SOMETIMES only. I cannot recreate the error on command.
could you guys tell me what I could do to trace this problem further or perhaps fix it?
Much appreciated,
Sameer.
Here is some of the html:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="robots" content="index,follow" />
<meta name="dc.date" scheme="iso8601" content="2008-07-11" />
<meta name="dc.language" scheme="rfc1766" content="en-CA" />
</head>
<body class="tundra">
<link rel="stylesheet" type="text/css" href="/ui/js/dojo/dijit/themes/tundra/tundra.css"/>
<script language="JavaScript" type="text/javascript">djConfig = { isDebug: true, parseOnLoad: true };</script>
<script language="JavaScript" type="text/javascript" src/dojo/dojo.js" </script>
<script language="JavaScript" type="text/javascript">
dojo.require("dijit.Tooltip");
</script>
....
</body>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="robots" content="index,follow" />
<meta name="dc.date" scheme="iso8601" content="2008-07-11" />
<meta name="dc.language" scheme="rfc1766" content="en-CA" />
</head>
<body class="tundra">
<link rel="stylesheet" type="text/css" href="/ui/js/dojo/dijit/themes/tundra/tundra.css"/>
<script language="JavaScript" type="text/javascript">djConfig = { isDebug: true, parseOnLoad: true };</script>
<script language="JavaScript" type="text/javascript" src/dojo/dojo.js" </script>
<script language="JavaScript" type="text/javascript">
dojo.require("dijit.Tooltip");
</script>
....
</body>

Is that really your html?
Is that really your html? You are missing a > tag after the dojo.js .. which might throw lesser browsers for a loop. no explanation as to why it only happens sometimes. also, fwiw, the language="" param is "very 1990", and can be omitted, though probably entirely unrelated.
regards,
Peter Higgins