Chrome/jQuery Uncaught RangeError: Maximum call stack size exceeded

JavascriptJqueryGoogle ChromeWebkitStack Overflow

Javascript Problem Overview


I am getting the error "Uncaught RangeError: Maximum call stack size exceeded" on chrome. here is my jQuery function

$('td').click(function () {
        if ($(this).context.id != null && $(this).context.id != '') {
            foo($('#docId').val(), $(this).attr('id'));
        }
        return false;
    });

Note that there are tens of thousands of cells in the page. However, I generally associate stack overflows with recursion and in this case as far as I can see there is none.

Does creating a lambda like this automatically generate a load of stuff on the stack? is there any way round it?

At the moment the only workaround I have is to generate the onclick events explicitly on each cell when rendering the HTML, which makes the HTML much larger.

Javascript Solutions


Solution 1 - Javascript

As "there are tens of thousands of cells in the page" binding the click-event to every single cell will cause a terrible performance problem. There's a better way to do this, that is binding a click event to the body & then finding out if the cell element was the target of the click. Like this:

$('body').click(function(e){
       var Elem = e.target;
       if (Elem.nodeName=='td'){
           //.... your business goes here....
           // remember to replace $(this) with $(Elem)
       }
})

This method will not only do your task with native "td" tag but also with later appended "td". I think you'll be interested in this article about event binding & delegate


Or you can simply use the ".on()" method of jQuery with the same effect:

$('body').on('click', 'td', function(){
        ...
});

Solution 2 - Javascript

You can also get this error when you have an infinite loop. Make sure that you don't have any unending, recursive self references.

Solution 3 - Javascript

Mine was more of a mistake, what happened was loop click(i guess) basically by clicking on the login the parent was also clicked which ended up causing Maximum call stack size exceeded.

$('.clickhere').click(function(){
   $('.login').click();
});

<li class="clickhere">
  <a href="#" class="login">login</a>
</li>

Solution 4 - Javascript

This problem happened with me when I used jQUery Fancybox inside a website with many others jQuery plugins. When I used the LightBox (site here) instead of Fancybox, the problem is gone.

Solution 5 - Javascript

U can use

  $(document).on('click','p.class',function(e){
   e.preventDefault();
      //Code 
   });

Solution 6 - Javascript

I recently just ran into this issue as well. I had a very large table in the dialog div. It was >15,000 rows. When the .empty() was called on the dialog div, I was getting the error above.

I found a round-about solution where before I call cleaning the dialog box, I would remove every other row from the very large table, then call the .empty(). It seemed to have worked though. It seems that my old version of JQuery can't handle such large elements.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAndyView Question on Stackoverflow
Solution 1 - Javascriptvantrung -cunconView Answer on Stackoverflow
Solution 2 - JavascriptJohn DurdenView Answer on Stackoverflow
Solution 3 - JavascriptJsonrasView Answer on Stackoverflow
Solution 4 - JavascriptSilvio DelgadoView Answer on Stackoverflow
Solution 5 - JavascriptdemenvilView Answer on Stackoverflow
Solution 6 - Javascriptdev4lifeView Answer on Stackoverflow