i have form and i am using jquery validate jquery.validate.pack.js
its work fine when i press submit button, i just add following code
$(document).ready(function(){
$("#contactform").validate();
});
and class=”validate” for text box
but i want to call php file with Ajax after validate is complete.
like
$.ajax({
type: “POST”,
url: “email_feedback.php”,
etc
how can i do this ?
Thanks
See the
submitHandlercallback option in http://docs.jquery.com/Plugins/Validation/validate#options