Answers for "js restart settimeout"

20

stop settimeout

var myVar;

function myFunction() {
  myVar = setTimeout(function(){ alert("Hello"); }, 3000);
}

function myStopFunction() {
  clearTimeout(myVar);
}
Posted by: Guest on February-19-2020
1

cancel settimeout

var timer1 = setTimeout(function() { removeStatusIndicator(); }, statusTimeout);

clearTimeout(timer1)
Posted by: Guest on April-27-2020
2

how to reset settimeout in javascript

// Get a reference to the timeout and call wwindow.clearTimeout() on 
// that refrence. 
let timeoutHandle = window.setTimeout(...);

window.clearTimeout(timeoutHandle);
Posted by: Guest on June-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language