[jQuery] fadeout response div after form submission
This is my first post so Hello to everyone on this great list ! :)
I have a form which I submit thanks to the jQuery Form plugin.
var pdoptions = { target: '#pdresult' };
$('#pdform').ajaxForm(pdoptions);
When submitting the form I get the response in the #pdresult div and I would
like to fade it out a few seconds later. How can I do that ?
I tried this additional option : success: $("#pdresult").fadeOut("slow");
but it doesn't work...
Thanks for your help !
G.