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.
