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

I want if a message(div class="message") there is (mean was display: block;) after 5000 milliseconds it is hide(display: none;). how is it?

Example: http://jsfiddle.net/SLRFt/1/

<div class="message">This is a message</div>

setTimeout(function(){ $('.message').fadeOut('slow'); }, 5000);
share|improve this question
5000 seconds = about 1.5 hours. Did you mean 5000 microseconds? – IvanGL Oct 5 '11 at 8:58
1  
What problem are you having? – Jamie Dixon Oct 5 '11 at 8:58
You mean milliseconds? – Yannbane Oct 5 '11 at 8:59
whats the problem really? – Arif Oct 5 '11 at 9:02
please rephrase your question because it is very unclear what you are asking actually. – Sander Oct 5 '11 at 9:10
show 4 more comments

1 Answer

up vote 9 down vote accepted
$('.message').delay(5000).fadeOut('slow');

http://jsfiddle.net/xavi3r/SLRFt/3/

share|improve this answer
keep in mind that delay is added since jquery 1.4 if you are using older versions you would need to upgrade or use the setTimeout technique. – Sander Oct 5 '11 at 9:08

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.