If you run Internet Explorer 8 and encounter the following error:
“html parsing error unable to modify the parent container element before the child”
or
“Internet Explorer cannot open the Internet site http://<Web site>.com. Operation aborted.”
The error basically means that an element on the page is trying to get modified without being completely loaded. (e.g. deleting or appending to the object). Possible causes are lightbox style or flash messenger transitions that run the following code:
$("body").append
It appears to be specific to Internet Explorer 8 with the way it parses the DOM object. Here’s a good reference to the problem on MSDN – http://blogs.msdn.com/b/ie/archive/2008/04/23/what-happened-to-operation-aborted.aspx
Fix: The quickest fix is to use jQuery to prevent the script from running until the page is fully loaded.
$(document).ready(function(){
// Your Javascript function goes here
});
</script>