Guest User

Untitled

a guest
Feb 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // отправка формы на сервер
  2. $(".button-popup").magnificPopup();
  3.  
  4. $(".ajax-form").submit(function() {
  5. var th = $(this);
  6. $.ajax({
  7. type: "POST",
  8. url: "mail.php",
  9. data: th.serialize()
  10. }).done(function() {
  11. alert("Спасибо за заявку!");
  12. setTimeout(function() {
  13. th.trigger("reset");
  14. $.magnificPopup.close();
  15. }, 1000);
  16. });
  17. return false;
  18. });
Add Comment
Please, Sign In to add comment