if valida is successfull than send mail to user otherwise don't.

$().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.

You need to look at the plugin you are using for validation.

Sponsor our Newsletter | Privacy Policy | Terms of Service