Skip to content

Instantly share code, notes, and snippets.

@agragregra
Created February 18, 2015 11:15
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save agragregra/8268ed788c8b750d52a6 to your computer and use it in GitHub Desktop.
Save agragregra/8268ed788c8b750d52a6 to your computer and use it in GitHub Desktop.
//Аякс отправка форм
//Документация: http://api.jquery.com/jquery.ajax/
$("#form, #form2").submit(function(e) {
e.preventDefault;
$.ajax({
type: "POST",
url: "mail.php",
data: $(this).serialize()
}).done(function() {
alert("Спасибо за заявку!");
setTimeout(function() {
$.fancybox.close();
}, 1000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment