how to stop an setinterval js? code example
Example 1: Javascript stop setInterval
var myInterval = setInterval(function(){console.log("mmk")}, 2000);
clearInterval(myInterval); //stop that interval
Example 2: stop interval js
clearInterval(interval)