Skip to content

Instantly share code, notes, and snippets.

@Bouhnosaure
Created April 28, 2015 12:43
Show Gist options
  • Save Bouhnosaure/91fc6863313e938b0533 to your computer and use it in GitHub Desktop.
Save Bouhnosaure/91fc6863313e938b0533 to your computer and use it in GitHub Desktop.
Post a form
$( ".contact-form" ).on( "submit", function( event ) {
event.preventDefault();
$.ajax({
type: "POST",
url: $( this ).attr('action'),
data: $( this ).serialize(),
dataType: "json",
success: function(data) {
alert('tout est ok !');
},
error: function(){
alert('oups erreur :o');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment