Resolve “Uncaught RangeError: Maximum Call Stack Size Exceeded”

0 0
Read Time:47 Second

I was using a lot of plugins which can make my life easier when Im dealing with inputs especially checkboxes and radio buttons. One of the best plugins which Im been using is ScrewDefaultButtons.


Ive started with this one:

<li>
  <label for="ch01">Lorem ipsum dolor</label>
  <input type="checkbox" id="ch01">
</li>

When the plugin was invoked on this element with code:

$('.product_filters input[type="checkbox"]').screwDefaultButtons({
    image: 'url("checkbox_sprite.png")',
    width: 15,
    height: 15
});

The element label is inactive. This means that you can cannot change a value of checkbox described as a for attribute clicking on label. So Ive changed structure a little bit:

Uncaught RangeError: Maximum call stack size exceeded

The problem was resolved with simple solution – removing the for attribute in label.

<li>
  <label>Lorem ipsum dolor
    <input type="checkbox" id="ch01"/>
  </label>
</li>

About Post Author

Piotr Sikora

Piotr Sikora Founder of WolePapierowe.com Co-founder of Liderazgo.pl MeetJS Kielce Committee member. JavaScript and Python enthusiast.
Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Leave a Reply

Your email address will not be published. Required fields are marked *

© UiCore 2025. All Rights Reserved.