[jQuery] Recent updates to the form plugin

[jQuery] Recent updates to the form plugin

The latest version of the form plugin has some new features that you
may not be aware of.
New Functions:
resetForm, clearForm and clearInputs
// invokes the form's native 'reset' method
$('#myForm').resetForm();
// clears all (appropriate) fields in the form
$('#myForm').clearForm();
// clears matched fields
$('.myStuff').clearInputs();
New Options for ajaxSubmit and ajaxForm:
resetForm, clearForm
// resets form after successful server response
$('#myForm').ajaxForm({ resetForm: true });
// clears form after successful server response
$('#myForm').ajaxForm({ clearForm: true });
As always, the latest form plugin can be found at:
http://jquery.com/dev/svn/trunk/plugins/form/form.js?format=txt
Full documentation can be found in the source file.
Mike
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/