$("form#testing").submit(function(event) { //Change
var th = $(this);
event.preventDefault();
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).submit(function() {
$.magnificPopup.open({
items: {
src: '<div class="js-popup"><i class="fa fa-check" aria-hidden="true"></i> <br />Ваша заявка принята. <br />Наш менеджер перезвонит Вам в течении 30 минут</div>', // can be a HTML string, jQuery object, or CSS selector
type: 'inline'
}
});
setTimeout(function() {
// Done Functions
th.trigger("reset");
}, 1000);
});
return false;
});
$("form#form1").submit(function() { //Change
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
$.magnificPopup.open({
items: {
src: '<div class="js-popup">Спасибо! <br /> Мы ва перезвоним в течении 15 минут</div>', // can be a HTML string, jQuery object, or CSS selector
type: 'inline'
}
});