0
[SOLVED] clearInterval not clearing
How come my clearInterval is not clearing after the button click? need some help on this on line 30 JS.🧐 https://code.sololearn.com/WQXqc89ObFJY/?ref=app
5 Respuestas
+ 5
declare it globally but assign the interval on click.
var interval;
function start() {
interval = setInterval()
}
+ 2
var interval;
function autoroll() {
interval = setInterval(start);
}
function stop() {
clearInterval(interval);
}
+ 1
You need to make the interval variable global and use it to clear
0
Made the clearInterval global, but still not working..
0
Thanks for the help, I appariciate it! Got it working and learned from the mistake👍