How can I hide the #results after 5 secs ? I tried this but it does not work.
$('#results').hide().html(data).fadeIn('slow').delay(5000).hide();
What I had is this one
$('#results').hide().html(data).fadeIn('slow');
|
How can I hide the #results after 5 secs ? I tried this but it does not work.
What I had is this one
|
|||
|
|
|
Put a duration on your
The issue is that You can see it work here: http://jsfiddle.net/jfriend00/wzbtU/ From the jQuery doc for When a duration is provided, .hide() becomes an animation method. |
||||
|
|
|
Do you mean something like:
|
|||||||||||
|
|
You'd have to use
The reason why |
|||||||
|