I am trying to have an element fade in, then in 5000 ms 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?
|
9
|
|||
|
|
|
|
Update: As of jQuery 1.4 you can use the
You could possibly use the Queue syntax, this might work:
or you could be really ingenious and make a jQuery function to do it.
which would ( in theory , working on memory here ) permit you do to this:
|
||||||
|
|
|
I just figured it out below:
I will keep the post for other users! |
|||
|
|
|
You can do something like this:
Sadly, you can't just do .animate({}, 2000) -- I think this is a bug, and will report it. |
||
|
|
|
|
To be able to use it like that, you need to return I.e.:
Then do this:
|
|||
|
|
|
|
I have tried to do this so I can get a repetive flash but I cannot get the initial call do work. I have included the new function
` into the end of my jquery.js file (Ver. 1.3.2). However it doesn't work. I am trying to get this to flash the text. It comes back in "Web Developer" toolbar as it cannot find the function idle. |
||
|
|