Все равно приходит 2 раза
$(".fofm").submit(function(e) {
e.preventDefault();
$.ajax({
type: "POST",
url: "contact.php",
data: $(this).serialize(),
success: function(msg) {
$('.contwindow').html('<p>Спасибо за ваше обращение!</p><br><p>Наше специалист свяжется с вами в ближайшее время</p>');
$('.contwindowhide').fadeIn(400).delay(2000).fadeO ut(400);
jQuery(".fofm").trigger("reset");
$.arcticmodal('close');
}
});
return false;
});
|