Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML parsing error KB927917 IE8

I am getting this error in IE 8 .

But not in all IE 8.

In some system web page is working fine , some are not.

Is it because of some settings.

Enabling or disabling some script will do the magic?

If anyone have gone through this error and solved :) please suggest.

like image 974
zod Avatar asked Dec 08 '10 04:12

zod


1 Answers

You have to check if the dom is loaded:

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

I got the same error as well, I couldn't reproduce it on all IE8. But this solved it!

like image 53
Tom Maeckelberghe Avatar answered Sep 20 '22 02:09

Tom Maeckelberghe