Skip to content Skip to sidebar Skip to footer

Html Parsing Error

But I don't know what's causing it on my page at http://www.jazmyn.com/media.html I keep getting this message: HTML Parsing Error: Unable to modify the parent container element be

Solution 1:

See this IEBlog article: What Happened to Operation Aborted?

Which says that in IE7 and earlier, if these conditions applied

  1. The HTML file is being parsed
  2. Script is executing
  3. The executing script attempts to add, or remove an element from an unclosed ancestor in the markup tree (not including the script block's immediate parent element).

the parser would throw an exception, obliterating the page, and in some cases crashing the browser altogether.

IE8 caught the exception, and handled the error in a less catastrophic manner, displaying the error in this question.

The problem was finally fixed properly when IE10 was released which incorporated an HTML5 compliant parser.

Solution 2:

The full error you are talking about is “HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)”, which gives you a KB article all about it.

Post a Comment for "Html Parsing Error"