I am using the JQuery form plugin (http://malsup.com/jquery/form/) to handle the ajax submission of a form. I also have JQuery.Validate (http://docs.jquery.com/Plugins/Validatio
$('#contactform').ajaxForm({ success : FormSendResponse, beforeSubmit: function(){ return $("#contactform").valid(); } }); $("#contactform").validate();
Above code worked fine for me.