Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
This is more of a JavaScript question than WordPress and as such it is better suited to StackOverflow. – Joseph Jun 21 '12 at 0:11

migrated from wordpress.stackexchange.com Jun 21 '12 at 0:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.