vote up -1 vote down star

UPDATE: the HTML was not well formed. This was causing the script to appear in inner div. Please ignore the question.

IE ver<8 has a known bug (Internet explorer cannot display the page. Operation aborted) If a script tries to append something to upper level block:

The bug is described here:

Update: I rephrased the question and simplified the example:

The bug occurs in the following code:

[end of html file]
<script type="text/javascript" >
if (window.document.body){
    var c_div = window.document.createElement('div');
    window.document.body.appendChild(c_div);	
}
</script>

</body>

Question: This seems to me exactly similar to example1 Method1 In Microsoft workaround (here is the link again). How come I still have the bug? What am I missing here?

flag

50% accept rate

3 Answers

vote up 7 vote down

Run your code in a domready/onload event handler.

link|flag
Please read the update. According to Microsoft it should work without onload event. See above. – Nir Feb 15 at 20:32
wouldn't make sense to change the dom before it is ready anyway – ionelmc Feb 15 at 21:26
vote up 0 vote down

It might be a slightly insane approach but could you pull out the innerHTML of the entire <body> append your string to it and then set the <body> innerHTML to the new value?

May affect some previously attached JS events unless it's inline onclick stuff.

link|flag
hehe. I should vote myself down for that :P – sanchothefat Feb 17 at 16:38
vote up 0 vote down

The HTML in the page was not well formed. Please ignore the question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.