Answers for "wait one second jquery"

1

jquery delay 1 second

setTimeout(
  function() 
  {
    //do something special
  }, 1000);
Posted by: Guest on April-18-2021
8

jquery wait n seconds

setTimeout(
  function() 
  {
    //do something special
  }, 5000);
Posted by: Guest on January-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language