show/hide this revision's text 3 Added link

Hey All,

I am trying to have an element fade in, then in 5000ms fade back out again. I know I can do something like:

setTimeout(function(){ $(".notice").fadeOut() }, 5000);

But that will only control the fade out, would i add the above on the callback?

UPDATE: I posted it here on my blog: http://www.ryancoughlin.com/2009/01/22/jquery-timeout-function/

Thanks to everyone for the help on this.

show/hide this revision's text 2 Adjust formatting. Use same time value in example as in problem description.

Hey All,

I am trying to have an element fade in, then in say 3000ms fadeOut(), 5000ms fade back out again. I know I can do something like:

		setTimeout(function(){$(".notice").fadeOut();},5000)

setTimeout(function(){ $(".notice").fadeOut() }, 5000);

But that will only control the fade out, would i add the above on the callback?

show/hide this revision's text 1

Timeout jquery effects

Hey All,

I am trying to have an element fade in then in say 3000ms fadeOut(), I know I can do something like:

		setTimeout(function(){$(".notice").fadeOut();},5000);

But that will only control the fade out, would i add the above on the callback?