vote up 0 vote down star

I got quite a few jQuery scripts in my js file, and now I'm experiencing the CPU going through the roof when I open the page in Firefox.

Looking at Firebugs console panel, I see the following error: too much recursion.

Then it refers to my jquery-1.3.2.min.js file.

How can I discover which jQuery function triggers the CPU spike?

I know I can deactivate one and one jQuery function, till I find the cause. I'm just hoping there is a better way of debugging.

UPDATE

I discovered when I opened the script from Firebug, that the jquery-1.3.2.min.js file belonged to another site (one of the many pges I have open in my Browser).

I was fooled because the browser spiked only when I opened my own page. Could it be that this occurs then the browser loads both jquery-1.3.2.min.js and jquery-1.3.2.js?

flag

62% accept rate

2 Answers

vote up 1 vote down

Too much recursion means that some function, say f(), is calling itself and then itself again too many times. Or maybe f() calls g() and g() calls f() etc... Each function call results in growth of the stack.

link|flag
1  
The question is "How can I discover which jQuery function triggers the CPU spike?" and not "What is recursion?" – strager Oct 9 at 22:32
Just need to understand your own code. – natrium42 Oct 9 at 22:36
1  
And maybe even post the code. – meder Oct 9 at 22:44
Sure, I can post the code. It's only 1500 lines of javascript code.... – Steven Oct 13 at 9:47
vote up 1 vote down

Does this happen in IE8 as well? IE8 has a profiler that will tell you how much time is being spent on each javascript function and how many times they get called. (Hit f12 and click profiler then hit start profiling and load your page)

Edit: It sounds like you might be passing something unexpected to jQuery which is causing jQuery to recur infinitely.

You might try this logging plugin to see what happens before the crash

link|flag
I've only noticed this in FF - as I'm using this when developing websites. – Steven Oct 13 at 9:45

Your Answer

Get an OpenID
or

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