$("form").submit(function() { //Change
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
alert("Ваша заявка отправлена. Скоро мы свяжемся с Вами!");
setTimeout(function() {
// Done Functions
th.trigger("reset");
}, 1000);
});
return false;
});
<button type="button" class="btn" data-toggle="modal" data-target="#modal-zayavka">Оставить заявку</button>
$("form").submit(function() { //Change
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
alert("Ваша заявка отправлена. Скоро мы свяжемся с Вами!");
setTimeout(function() {
// Done Functions
$('#modal-zayavka').modal('hide');
th.trigger("reset");
}, 1000);
});
return false;
});
$("form").submit(function() { //Change
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
$('form').replaceWith("<div> </div>");
});
return false;
});
$("form").submit(function() { //Change
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
alert("Ваша заявка отправлена. Скоро мы свяжемся с Вами!");
setTimeout(function() {
// Done Functions
th.hide();
th.trigger("reset");
}, 1000);
});
return false;
});