vote up 0 vote down star

A piece of javascript code I'm working on is causing the nasty "Operation Aborted" message in IE. I am well aware that you cannot modify the DOM until after it has loaded. Sure enough the line of javascript code causing the error is the one which appends a new div tag to the body. However the function which the line is located within is called via FastInit.addOnLoad! I thought this meant the function would be called after the DOM was ready. Is there a better solution to this problem that using FastInit?

flag

3 Answers

vote up 0 vote down check

N.B. SO is playing silly buggers with the formatting; sorry about that.

The "Operation Aborted" error occurs when you try to modify the grandparent element of the script element. So, for example, the following code will cause it because the script is attempting to modify the body from a child div, meaning it is trying to modify its grandparent element:

<body>
    <div id="foo">
        <script type="text/javascript">
        var newThing = document.createElement("div");
        /* ### The next line will cause the error ### */
        document.body.appendChild(newThing);
        <script>
    </div>
<body>


The same code changed to:

<body>
    <div id="foo">
    </div>
    <script type="text/javascript">
    var newThing = document.createElement("div");
    /* ### The next line will NOT cause an error ### */
    document.body.appendChild(newThing);
    <script>
<body>

would _not_ cause the error, as the script is now modifying its parent, which IE can handle.

The most common reason for this happening is that you have failed to close a div (or other element) further up the page; find the missing close tag and you'll fix it. Alternatively, if your script actually is inside another element, move it out so it is a child of the body.

link|flag
The script in questions is in the <head> and is called via FastInit so the DOM should be ready already. – Josh Jul 20 at 17:01
FastInit has to use some pretty weird tricks to get a simulation of DOMready on IE. The definitive Microsoft explanation of the causes for this error is at support.microsoft.com/kb/927917 – NickFitz Jul 20 at 17:14
@NickFitz: The Microsoft document seems to refer to scripts that are grandchildren (or deeper) of the body. My script is a child of the <head> tag. Are you saying my script should be a child of the <body> tag instead? It appears to me that article doesn't apply in this case. – Josh Jul 20 at 17:54
@NickFitz putting the script in the body tag didn't help, unless it was the very last item in the DOM. – Josh Jul 24 at 22:25
I ended up just putting the script tag as the final element in the DOM... still don't know why this wasn't work in the first place. – Josh Aug 25 at 19:16
vote up 1 vote down

I'm not sure about FastInit, but I just answered a similar question about waiting for the DOM to be ready here:

http://stackoverflow.com/questions/1153858/initiate-onclick-faster-than-with-document-onload/1153988#1153988

Basically, you can do it in IE by using the defer attribute on your script tag:

<script type="text/javascript" defer>
</script>

This will delay parsing the script until after the DOM is ready.

link|flag
@Andy, thanks, I'll try that. – Josh Jul 20 at 14:55
@Josh: fastInit already uses that trick to work out when to trigger on IE: you can see it at the bottom of the FastInit source in a "document.write". – NickFitz Jul 20 at 17:16
@NickFitz: that's what I thought -- which is why I was confused as to why this isn't working. – Josh Jul 20 at 17:52
@Andy, unfortunately, the defer tag didn't help. – Josh Jul 24 at 16:08
vote up 0 vote down

Sorry...

window.onload = function() {
    // Your code??
}
link|flag
I'd prefer not to wait until all images have loaded. Also, when I do window.onload, sometimes my code is never actually run! – Josh Jul 20 at 14:54

Your Answer

Get an OpenID
or

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