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?
|
|
|
|
|
|
|
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:
|
||||||||||
|
|
|
I'm not sure about FastInit, but I just answered a similar question about waiting for the DOM to be ready here: Basically, you can do it in IE by using the defer attribute on your script tag:
This will delay parsing the script until after the DOM is ready. |
||||||||
|
|
|
Sorry...
|
||
|
