Answers for "use wait in js"

1

wait for element javascript

var checkExist = setInterval(function() {
   if ($('#the-canvas').length) {
      console.log("Exists!");
      clearInterval(checkExist);
   }
}, 100); // check every 100ms
Posted by: Guest on January-11-2021
5

wait for time javascript

//code before the pause
setTimeout(function(){
    //do what you need here
}, 2000);
Posted by: Guest on November-28-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language