Answers for "javascript dom wait"

18

javascript set delay

var delayInMilliseconds = 1000; //1 second

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

wait for the dom to load javascript

document.addEventListener('DOMContentLoaded', (event) => {
  //the event occurred
})
Posted by: Guest on February-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language