Skip to content

Instantly share code, notes, and snippets.

@Astargh
Created February 22, 2017 22:32
Show Gist options
  • Save Astargh/49ea319c3a433e7e0752375cc483c4c9 to your computer and use it in GitHub Desktop.
Save Astargh/49ea319c3a433e7e0752375cc483c4c9 to your computer and use it in GitHub Desktop.
E-mail Ajax Send
//E-mail Ajax Send
$("form").submit(function() { //Change
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
setTimeout(function() {
// Done Functions
th.trigger("reset");
}, 500);
setTimeout(function() {
document.location.href='http://gepcru.ru/thank-you.html';
}, 800);
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment