Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $("form").submit(function() {
  2. var that = $(this);
  3. $.ajax({
  4. type: "POST",
  5. url: "mail.php",
  6. data: that.serializeArray()
  7. }).done(function() {
  8. alert("Thank you!");
  9. setTimeout(function() {
  10. that.trigger("reset");
  11. }, 1000);
  12. });
  13. return false;
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement