$("#main_form").submit(function() { //Change
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
//судя по всему код должен быть тут
setTimeout(function() {
// Done Functions
th.trigger("reset");
$.magnificPopup.close();
}, 3000);
});
return false;
});
$("#main_form").submit(function(e) { //Change
e.preventDefault();
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", //Change
data: th.serialize()
}).done(function() {
th.trigger("reset");
$.magnificPopup.open({
items: {
src: '.modal'
}
});
setTimeout(function() {
// Done Functions
$.magnificPopup.close();
}, 3000);
});
});