Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using .show to display a hidden message after a successful form submit.

My question: How to display the message for 5 seconds then hide.

Thanks in advance.

share|improve this question

2 Answers

up vote 44 down vote accepted

You can use .delay() before an animation, like this:

$("#myElem").show().delay(5000).fadeOut();

If it's not an animation, use setTimeout() directly, like this:

$("#myElem").show();
setTimeout(function() { $("#myElem").hide(); }, 5000);

You do the second because .hide() wouldn't normally be on the animation (fx) queue without a duration, it's just an instant effect.

Or, another option is to use .delay() and .queue() yourself, like this:

$("#myElem").show().delay(5000).queue(function(n) {
  $(this).hide(); n();
});
share|improve this answer
1  
Thanks, very clean and useful. – josoroma Aug 7 '10 at 1:28
2  
@josoroma: If this answer was useful, then it's polite to tick it as "accepted", for the benefit of both the answerer and other people who may read this question in the future. – GlenCrawford Aug 7 '10 at 1:54
Excellent solutions – Imdad May 17 '12 at 4:26
Suggestion 2 worked perfectly with showing a checkmark icon and using fadeOut() instead of hide(). Great answer. – Kevin Zych Feb 6 at 16:18
You can also do $("#myElem").show().delay(5000).hide(); – wilsjd Apr 16 at 20:22

You can use the below effect to animate, you can change the values as per your requirements

$("#myElem").fadeIn('slow').animate({opacity: 1.0}, 1500).effect("pulsate", { times: 2 }, 800).fadeOut('slow'); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.