Answers for "function with delay"

1

run a function after delay javascript

setTimeout(function() { your_func(); }, 5000);
Posted by: Guest on January-11-2021
29

Delay js function

var delayInMilliseconds = 1000; //1 second

setTimeout(function() {
  //your code to be executed after 1 second
}, delayInMilliseconds);
Posted by: Guest on January-31-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language