Use the submitHandler option and resubmit:
$("#form").validate({
submitHandler: function(form) {
// add code to display message
form.submit();
}
});
Jörn
On Mon, Jul 20, 2009 at 5:16 PM, dev<[email protected]> wrote:
>
> Hello,
>
> I'm using jquery Validation plugin (http://bassistance.de/jquery-
> plugins/jquery-plugin-validation/) for client side validation.
> On successful validation, I would like to display "Processing...."
> message (till new page loads - non AJAX post).
> Please tell how to do so ?
>
> ( If triggered via $( '#formID' ).submit(), then message is displayed
> even if validation FAILS ).
>
>
> Thank You.