KB927917

You get an error in IE6/7/8

Message: HTML Parsing Error: Unable to modify the parent container element 
before the child element is closed (KB927917)

Your javascript is attempting to append something to the body element before the body element is closed.

You need to enclose your javascript in an on-load event handler.

$(document).ready(function(){/* Your JS */});

No Comment

No comments yet

Leave a reply