0

Possible Duplicate:
How can I use delay() with show() and hide() in Jquery

How to use jQuery's .delay() method with .hide() or show()?

the following doesn'tworks:

$("#element").val("").delay(250).hide();

but this does:

$("#element").val("").delay(250).slideUp("slow");

Any work-arounds?

Community
  • 1
  • 1
Babiker
  • 18,300
  • 28
  • 78
  • 125

1 Answers1

0

what about using fadeOUt('slow') for hidding ?