Answers for "javascript wait for event"

0

js wait command

function wait(milliseconds) {
  const date = Date.now();
  let currentDate = null;
  do {
    currentDate = Date.now();
  } while (currentDate - date < milliseconds);
}

function your_code() {
  //code stuff
  wait(1000); //waits 1 second before continuing
  //other code stuff
}
Posted by: Guest on October-22-2021
1

javascript wait for dom

document.addEventListener("DOMContentLoaded", function(event) { 
  //do work
});
Posted by: Guest on July-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language