Skip to content

Instantly share code, notes, and snippets.

@aguimaraes
Created August 13, 2013 14:09
Show Gist options
  • Select an option

  • Save aguimaraes/6221482 to your computer and use it in GitHub Desktop.

Select an option

Save aguimaraes/6221482 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$('#contact-form').validate({
submitHandler: function(form) {
$(form).ajaxSubmit({
dataType: 'json',
error: function() {
},
success: function(responseText, statusText, xhr, form) {
}
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment