jquery delay 1 second

120

jquery delay 1 second -

setTimeout(
  function() 
  {
    //do something special
  }, 1000);

jquery pause n seconds -

setTimeout(
  function() 
  {
    //do something special
  }, 5000);

Comments

Submit
0 Comments