Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

clear timeout in function js

var timer;
function endAndStartTimer() {
  window.clearTimeout(timer);
  var millisecBeforeRedirect = 10000; 
  timer = window.setTimeout(function() {
    alert('Hello!');
  }, millisecBeforeRedirect); 
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #clear #timeout #function #js
ADD COMMENT
Topic
Name
1+4 =