Skip to content

Instantly share code, notes, and snippets.

@seriiserii825
Last active June 12, 2017 21:23
Show Gist options
  • Save seriiserii825/ec5b96ae9fa9a6e918d5470077306eb0 to your computer and use it in GitHub Desktop.
Save seriiserii825/ec5b96ae9fa9a6e918d5470077306eb0 to your computer and use it in GitHub Desktop.
form-ajax
$(".forms").submit(function() {
$.ajax({
type: "POST",
url: "mail.php",
data: $(this).serialize()
}).done(function() {
alert("Спасибо за заявку! Скоро мы с вами свяжемся.");
setTimeout(function(){
$(".form").trigger("reset");
});
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment