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

Popular posts from this blog

paypal - How to know the URL referrer in PHP? -

oauth - Facebook OAuth2 Logout does not remove fb_ cookie -

wpf - Line breaks and indenting for the XAML of a saved FlowDocument? -