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

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -