Is it possible to automatically hide an element in a web page 5 seconds after the form loads using jQuery?
Basically, I\'ve got
I think, you could also do something like...
setTimeout(function(){ $(".message-class").trigger("click"); }, 5000);
and do your animated effects on the event-click...
$(".message-class").click(function() { //your event-code });
Greetings,