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

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

gtk - Python Window Resize -

c# - read full xml file data over tcp -