开发者

Jquery - Too Much recursion

开发者 https://www.devze.com 2022-12-09 06:03 出处:网络
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.

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();
});
0

精彩评论

暂无评论...
验证码 换一张
取 消