Posted by Stevo on 11/19/07 18:38
Mika wrote:
> "Mika" <anon@anon.com> wrote in message
>>> Internet Explorer cannot open the Internet site...
>>> Operation aborted
>> There was a mention to some style code in one of the fixes for this known
>> IE bug. Anyway, it now appears to be resolved.
No style problems can cause that. You've just shifted the problem around
a bit. Edit: I just read you're including google maps code, that'll be
what's doing it.
>> Thanks for all the tips. Hopefully MS will fix the bug before even more
>> programmers hate their browser, even if the majority of public don't.
> Okay it turns out we jumped the gun as the problem is still happening,
> albeit less often. It is completely random.
The problem is that some code is trying to dynamically create DOM
elements before the page is complete (i.e. before the </body> tag). IE
won't tolerate this.
> Can anyone suggest another way to do this (which doesn't work)?:
> <!--[if IE]></body><![endif]-->
Have you tried using document.write("<\/body>"); ?
If that doesn't work, then I'd just put the </body> tag inline as it
should be and deal with Firefox's problem. I haven't read all the posts
in this thread so I don't know details of what the problem is there.
[Back to original message]
|