I was wondering, how in jquery am I able to hide a div after a few seconds? Like Gmail's messages for example.
I've tried my best but am unable to get it working.
Thanks!
|
I was wondering, how in jquery am I able to hide a div after a few seconds? Like Gmail's messages for example. I've tried my best but am unable to get it working. Thanks! |
|||||
|
|
This will hide the div after 1 second (1000 milliseconds).
If you just want to hide without fading, use |
|||||||||||||
|
|
You can try the
call the div set the delay time in milliseconds and set the property you want to change, in this case I used .fadeOut() so it could be animated, but you can use .hide() as well. |
|||||
|
From http://james.padolsey.com/javascript/jquery-delay-plugin/ (Allows chaining of methods) |
|||
|
|
|
There's a really simple way to do this. The problem is that .delay only effects animations, so what you need to do is make .hide() act like an animation by giving it a duration.
By giving it a nice short duration, it appears to be instant just like the regular .hide function. |
|||
|
|
|
Probably the easiest way is to use the timers plugin. http://plugins.jquery.com/project/timers and then call something like
|
|||||||
|
|
Using the jQuery timer will also allow you to have a name associated with the timers that are attached to the object. So you could attach several timers to an object and stop any one of them.
The eval function (and its relatives, Function, setTimeout, and setInterval) provide access to the JavaScript compiler. This is sometimes necessary, but in most cases it indicates the presence of extremely bad coding. The eval function is the most misused feature of JavaScript. |
||||
|
|