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?
what about using fadeOUt('slow')
for hidding ?
精彩评论