I have a maximum call stack error being triggered by this code block:
$(".resume_box").click(function () {
$("#resume_upload").trigger("click");
});
This is the HTML it references:
<div class="resume_box">
<div class="file_instructions"> Please use .pdf format</div>
<div class="button_plate">Choose a file</div>
<input id = "resume_upload" type = "file" name = "resume" style = "display: none" />
</div>
I've checked, and there's nothing else in the JS file or the HTML file with the same name, class, or id. Here's what the stack looks like:
trigger @ jquery.min.js:4
(anonymous) @ jquery.min.js:4
each @ jquery.min.js:2
each @ jquery.min.js:2
trigger @ jquery.min.js:4
(anonymous) @ script.js:70
dispatch @ jquery.min.js:3
r.handle @ jquery.min.js:3
trigger @ jquery.min.js:4
(anonymous) @ jquery.min.js:4
each @ jquery.min.js:2
each @ jquery.min.js:2
trigger @ jquery.min.js:4
(anonymous) @ script.js:70
Repeat the last 8 lines until the stack size is exceeded.
Every other answer is correct (event bubbling), here is just another solution: simply remove the
resume_upload
button from theresume_box
element. Thus, triggering a click on the button won't bubble up to the box, putting an end to this call stack.Here is a working codepen.