Jquery - Too Much recursion
Getting this error with jquery & jquery.form. Site has been live for awhile..upgraded to latest version of jquery & jquery form and 开发者_JAVA百科still having same issue.
This is the error in firebug
too much recursion [Break on this error] (function(){var l=this,g,y=l.jQuery,p=l....each(function(){o.dequeue(this,E)})}});\n
And in IE8 it's a popup error that says "Stack Overflow: Line 12"
Here's the url to the website. Any idea what part of our jquery code could be causing this?
http://www.caromalcolours.com/
thanks
You are calling document.ready
inside document.ready
on line 331:
$(document).ready(function() {
// omitted some lines...
// This is causing the infinite recursion here!!!!!!!
$(function() {
$("ul#newsScroller").liScroll();
});
fadeIn();
});
精彩评论