Guest User

Untitled

a guest
Apr 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // форма отправки AJAX
  2. $(document).ready(function() {
  3.  
  4. $("#main-form-ajax").submit(function() {
  5. $.ajax({
  6. type: "POST",
  7. url: "mail.php",
  8. data: $(this).serialize()
  9. }).done(function() {
  10. $(this).find("input").val("");
  11. $('#modal-thanks').modal('show');
  12. $("#main-form-ajax").trigger("reset");
  13. });
  14. return false;
  15. });
  16.  
  17. });
Add Comment
Please, Sign In to add comment