Skip to content

Instantly share code, notes, and snippets.

@rayets123
Created January 17, 2016 12:32
Show Gist options
  • Save rayets123/84883668f59ff0c69eeb to your computer and use it in GitHub Desktop.
Save rayets123/84883668f59ff0c69eeb to your computer and use it in GitHub Desktop.
форма Ajax
$("#form").submit(function() {
$.ajax({
type: "POST",
url: "mail.php",
data: $(this).serialize()
}).done(function() {
alert("Спасибо за заявку!");
setTimeout(function() {
$("#form").trigger("reset");
}, 1000);
});
return false;
});
//Chrome Smooth Scroll
try {
$.browserSelector();
if($("html").hasClass("chrome")) {
$.smoothScroll();
}
} catch(err) {
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment