MetaGuru
MetaGuru

Reputation: 43813

IE7: "Script is running slowly, do you want to stop it?" - How can I figure out which script it is?

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

Upvotes: 0

Views: 905

Answers (2)

Martin Jespersen
Martin Jespersen

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

Macy Abbey
Macy Abbey

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

Related Questions