Is it possible to automatically hide an element in a web page 5 seconds after the form loads using jQuery?
Basically, I\'ve got
This is how you can set the timeout after you click.
$(".selectorOnWhichEventCapture").on('click', function() { setTimeout(function(){ $(".selector").doWhateverYouWantToDo(); }, 5000); });
//5000 = 5sec = 5000 milisec