Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript cancel timeout

// wait 1000ms and then run func()
let myTimeout = setTimeout(func, 1000);
// cancel the timeout
clearTimeout(myTimeout);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #cancel #timeout
ADD COMMENT
Topic
Name
5+2 =