Skip to content

Instantly share code, notes, and snippets.

@Korveld
Created May 22, 2015 14:11
Show Gist options
  • Select an option

  • Save Korveld/6cd4e80cb6d06252de72 to your computer and use it in GitHub Desktop.

Select an option

Save Korveld/6cd4e80cb6d06252de72 to your computer and use it in GitHub Desktop.
Ajax form js
$(document).ready(function() {
$('#form').submit(function() {
$.ajax({
type: 'POST',
url: 'mail.php',
data: $(this).serialize()
}).done(function() {
$(this).find('input').val('');
alert('Спасибо за заявку! Скоро мы с вами свяжемся.');
$('#form').trigger('reset');
});
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment