.cf:before,
.cf:after {
content: "";
display: table;
}
.cf:after {
clear: both;
}
$("form").submit(function() {
var that = this;
// $(this).validate() // возможно и валидацию понадобиться вызвать, смотря как у вас там все работает..
if ( !$(this).valid() ) return false; // проверьте, правильно ли заполнена форма
$.ajax({
type: "POST",
url: "mail.php",
data: $(this).serialize()
}).done(function() {
alert("Спасибо за заявку!");
});
setTimeout(function() {
$.fancybox.close();
$(that).trigger("reset");
}, 1000);
return false;
});
(function(){
})();
var myFunc = function($){
};
myFunc(jQuery);