Guest User

Untitled

a guest
Oct 20th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $(document).ready(function() {
  2. $("#form").submit(function() {
  3. $.ajax({
  4. type: "POST",
  5. url: "mail.php",
  6. data: $(this).serialize()
  7. }).done(function() {
  8. $(this).find("input").val("");
  9. alert("Спасибо за заявку мы с вами свяжемся");
  10. $("#form").trigger("reset");
  11. });
  12. return false;
  13. });
  14. });
Add Comment
Please, Sign In to add comment