This is my code:
<script>jQuery(document).ready(function($) {
$('#contact-form').validate( {
rules: {
name: { required: true },
email: { required: true, email: true },
subject: { required: true },
message: { required: true }
},
onfocusout: false,
onkeyup: false,
groups: { fieldgroup: "name email subject message" },
messages: { name: "<?php _e('Name field is required', 'motorlab');?>",
email: "<?php _e('Invalid E-mail', 'motorlab');?>",
subject: "<?php _e('Subject field is required', 'motorlab');?>",
message: "<?php _e('Message field is required', 'motorlab');?>"
},
errorLabelContainer: "#messageBox",
submitHandler: function(form) {
var formdata = $(form).serialize();
$.ajax( { type: "POST", url: "<?php echo get_template_directory_uri(); ?>/inc/send-mail.php", data: formdata,
success: function() {
alert( "Foi!" );
}
});
return false;
}
}); });
The validation is working fine, but I want to replace the alert on subimit success by a message that must appear in the errorLabelContainer (#messageBox), and also, I want to reset all the fields whem the message was successfully sent.
Thanks! Daniel