Reputation: 43813
The damn thing gives me NO other information. It does not occur in any other browser.
Upvotes: 0
Views: 905
Reputation: 26183
Use Dynatrace ajax edition to profile you javascript. That will tell you exactly what is using too much cpu time, no need to guess :)
Upvotes: 1
Reputation: 3887
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.
Upvotes: 2