The damn thing gives me NO other information. It does not occur in any other browser.

link|improve this question

79% accept rate
7  
I'm pretty sure all scripts run slowly in IE7... – Joel Mueller Feb 3 '11 at 22:19
feedback

2 Answers

up vote 2 down vote accepted

This is caused by an unbounded loop of some sort.

Culprits could be: for, setTimeout, do and while.

How large is this collection of scripts? You could try the script debugging/profiling in IE8 while running in IE7 compatibility mode.

If that doesn't work, sometimes the old, remove x to isolate y works, albeit slowly.

link|improve this answer
1  
I think that setTimeout is more likely to be the solution than the culprit. The message appears because a JS method runs too long without returning control back to the browser. setTimeout returns control to the browser, and could be used to break up a large/expensive loop into smaller parts that finish before IE7 puts up this message. – Joel Mueller Feb 3 '11 at 22:25
Yup, that's what usually does it. Nicholas C Zakas has a few suggestions in his Speed up JavaScript articles – James Long Feb 3 '11 at 22:25
@Joel well, that article is a much more complete answer than mine. If you respond with your own answer I'll delete mine. – Macy Abbey Feb 3 '11 at 22:28
That was James that linked the article - I can't take credit for that. – Joel Mueller Feb 3 '11 at 22:35
I finally found it after clicking randomly in IE7 when it threw the pop-up it eventually gave me an actual error pop-up that showed me the script. The problem is a TON of jQuery .unbind() calls and various bindings when there are a ton of certain objects on the page. I will need to optimize that. If I click 'keep running the script' it eventually stops. Thanks for your advice. – Ryan Feb 3 '11 at 22:50
feedback

Use Dynatrace ajax edition to profile you javascript. That will tell you exactly what is using too much cpu time, no need to guess :)

link|improve this answer
Thank you, I will look into this... – Ryan Feb 3 '11 at 22:51
You are welcome - it will probably be quite an eyeopener if you haven't used it before... it will tell you just about everything about everything that is using cpu time inside ie, including rendering and painting events... it is simply the best tool for the job and leaves firebug in the dirt ;) Too bad it only supports ie so far – Martin Jespersen Feb 3 '11 at 22:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.