$().ready(function() {
$("#contactForm").validate({
rules: {
contactName: “Please Enter Full Name”,
contactBody: “Please Enter full message here”,
contactEmail: {
required: true,
email: true
}
}
});
});
this validate perfect , what i need is if it is successfull than send ajax request or mail to user otherwise don’t.