jQuery: how do I get a div to go away after 1 second? (jQuery 1.3.2) -
Is there a way to hide a device after 1 second?
Edit:
setTimeout (function () {$ j ('. Flotymessage'). FadeOut (300);}, 1000);
does not work .floatymessage is a div
Use after one second (1000 milliseconds).
setTimeout (function () {$ ('div # divID'). Hide ();}, 1000);
Comments
Post a Comment