How to use jQuery setTimeout function
The Basic syntax for setTimeout function is, 1 setTimeout(function() { 2 // Do something after 2 seconds 3 }, 2000); The setTimeout function takes the times in miliseconds. And the block can contain either yourjQuery code, or...