Why would this web page cause IE6 to lock up? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T06:34:32Zhttp://stackoverflow.com/feeds/question/513227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up0Why would this web page cause IE6 to lock up?Justin Scott2009-02-04T20:44:35Z2009-12-07T20:22:12Z
<p>I'm stumped. From what we can tell there is nothing wrong with this page and it renders fine everywhere else (IE7/IE8, FireFox, Opera, Safari, etc). The problem is that if it's loaded in IE6 on Windows XP SP3 it just locks up the browser and it has to be force-closed through task manager in most cases. A few of our test computers load it fine, but others just up and die like they joined a cult and drank the punch. We're at our wits end trying to identify the problem, or even what is special about the computers where it works or doesn't work. Any thoughts?</p>
<p><a href="http://www.centerforsight.net/doctors-staff/providerDisplay.cfm?staID=8" rel="nofollow">http://www.centerforsight.net/doctors-staff/providerDisplay.cfm?staID=8</a></p>
<p>Responses like "why are you using ColdFusion" or "because IE6 sucks" won't help me. Our client is stuck with IE6 for the foreseeable future and needs their web site to work in that version. Any insight into the actual problem are greatly appreciated, however. Thanks in advance!</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513274#5132743Answer by Srdjan Pejic for Why would this web page cause IE6 to lock up?Srdjan Pejic2009-02-04T20:52:10Z2009-02-04T20:52:10Z<p>It sounds like that something in the JS files gets locked into an infinite loop on IE. Why don't you try putting in alerts into the JS functions that get called to try and isolate the piece of code that locks the browser.</p>
<p>IE's JS engine is full of bugs and you probably found one.</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513287#5132870Answer by mangst for Why would this web page cause IE6 to lock up?mangst2009-02-04T20:54:20Z2009-02-04T20:54:20Z<p>Maybe it has something to do with Javascript code. IE6's engine is undoubtedly much less well designed than that of other browsers.</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513295#5132952Answer by Diodeus for Why would this web page cause IE6 to lock up?Diodeus2009-02-04T20:55:14Z2009-02-04T20:55:14Z<p>Try loading it inside <a href="http://www.my-debugbar.com/wiki/IETester/HomePage" rel="nofollow">IE Tester</a> and see if it offers any clues.</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513304#5133040Answer by Syntax for Why would this web page cause IE6 to lock up?Syntax2009-02-04T20:56:07Z2009-02-04T20:56:07Z<p>It's either javascript or it's waiting to have information dumped from a buffer. If the entire page loads in one giant blob and gets sent (and has a lot to it) it can also overwhelm IE and lock it up. (or at least lock it till the glob gets rendered)</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513389#5133890Answer by mangst for Why would this web page cause IE6 to lock up?mangst2009-02-04T21:16:09Z2009-02-04T21:16:09Z<p>Do they have the latest version of IE6? Have they run Windows Update recently? Maybe there's some obscure bug that is fixed in a patch or service pack.</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513405#5134051Answer by Tom for Why would this web page cause IE6 to lock up?Tom2009-02-04T21:20:17Z2009-02-04T21:20:17Z<p>Save a copy of the page on your local machine with Firefox. Loadup the page IE 6, does it hang? If no, find out what firefox is not loading, if yes starting removing stuff from the page. Start removing script tags one by one until you stop it from crashing, when you've tracked down a specific problem, try reposting the question to get a better answer about how to fix the JS issue :)</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/1862638#18626380Answer by webmaster for Why would this web page cause IE6 to lock up?webmaster2009-12-07T20:22:12Z2009-12-07T20:22:12Z<h2>Did you resolve this issue? I am having the same problem.</h2>