IE 8 Crashes When Loading Site, Can't Debug - IE 8 Crashes When Loading Site, Can't Debug - wordpress wordpress

IE 8 Crashes When Loading Site, Can't Debug -


It crashes for me too in IE9 with IE8 mode. (see development tools -> F12 ) If you disable javascript, it doesn't crash.. so it's a javascript issue. I see that you are loading 3 different version of jQuery, could be that?

EDIT. I was using the debugger, and got frozen during execution of jQuery 1.44 (You are loading this library in the footer from Google CDN )


It seems that most likely you have a trailing comma, not necessarily a stray one. For example:

{  "hello":"world",  "foo":"bar"}

Would work fine, but if you did:

{  "hello":"world",  "foo":"bar",}

It would totally kill IE. Look for that or maybe give us more hints as to what the error is.


When comment the script tag of fancybox, IE doesn't crash. But I don't know what is the cause.

You call jquery twice: jquery 1.6 and jquery 1.4.4. Seems this cause the crash. But if you disable jquery 1.4.4, fancybox still causes the crash. Disabling jquery 1.6 avoid the crash.