HTML parsing error KB927917 IE8

I get this error in IE 8.

But not in all IE 8.

On some web page, the system works fine, and some do not.

This is due to some settings.

Turning on or off some script will do the magic?

If someone went through this error and decided :) please suggest.

+6
javascript jquery internet-explorer ajax internet-explorer-8
source share
5 answers

Your users may have IE8 as IE7 compatibility mode if this violates the code required to detect document.documentMode and introduces a fix for IE7.

To find the problem code, run it in compatibility mode yourself and use the IE8 debugger.

+1
source share

You should check if dom is loaded:

$(function(){ ... }); 

I have the same error too, I could not reproduce it on all IE8. But that solved it!

+8
source share

Refer to this thread .

This is a known issue in IE8, and Microsoft posts on the site offer to install the Cumulative Security KB2360131 fix pack fix to resolve this issue.

I successfully reproduced this problem on two laptops and was able to solve it after installing this fix pack. I also tried uninstalling this fix pack and retrying.

+3
source share

The error can be as simple as a missing closing tag in the HTML code.

Code example:

 <li> <a rel="fancy" href="some-highres-image" title="some-title"> <img src="some-lowres-image" alt="some-name" width="75" height="75" /> <span class="zoom">Zoom displayed onmouseover</a> <!-- This should be </span> --> </a> </li> 

where rel = "fancy" calls fancybox after the dom is ready. Invalid span tag fires error KB927917 in IE8 (8.0.6001.18702)

0
source share

Update for Sudip: Security Update KB2936068 currently fixes this error.

0
source share

All Articles