$(document).ready(function () {
$("input,select,textarea").jqBootstrapValidation();
$(".sect_folio li").click(function () {
$(".sect_folio li").removeClass("active");
$(this).addClass("active");
});
$('.popup').magnificPopup({type: 'image'});
$('.popup_content').magnificPopup({type:'inline', midClick: true});
$(".contact_us").magnificPopup();
$(".h1top").animated("bounceIn", "flipOutX");
$(".h1top2").animated("bounceIn", "flipOutX");
$(".h1top3").animated("bounceIn", "flipOutX");
$(".h1_txt").animated("bounceInLeft", "bounceOutLeft");
$(".p_txt").animated("bounceInRight", "bounceOutRight");
$(".process_txt h1").animated("fadeInDown", "bounceOutRight");
$(".process_txt ul li").animated("fadeInUpBig", "bounceOutLeft");
$(".sect_folio div h1").animated("bounceInLeft", "bounceOutLeft");
$(".sect_folio div li").animated("bounceInRight", "bounceOutRight");
$("h6").animated("zoomInUp", "zoomInUp");
function heightDetect() {
$(".main_head").css("height", $(window).height());
}
heightDetect();
$(window).resize(function () {
heightDetect();
});
$(".toggle_mnu").click(function () {
$(".sandwich").toggleClass("active");
});
$(".top_mnu ul a").click(function () {
$(".top_mnu").fadeOut(600);
$(".sandwich").toggleClass("active");
});
$(".toggle_mnu").click(function () {
if ($(".top_mnu").is(":visible")) {
$(".top_mnu").fadeOut(600);
$(".top_mnu li a").removeClass("fadeInUp animated");
} else {
$(".top_mnu").fadeIn(600);
$(".top_mnu li a").addClass("fadeInUp animated")
}
});
});
$(window).load(function() {
$(".loader_inner").fadeOut();
$(".loader").delay(400).fadeOut("slow");
});
$(function () {
$("#container").mixItUp({
});
});
$(".portfolio_item").each(function (i) {
$(this).find("a").attr("href", "#work_" + i);
$(this).find(".port_descr").attr("id", "work_" + i);
});
$(".top_mnu a").mPageScroll2id();
а вот одна из контактных форм
А вот вторая форма
вот код который был рабочий и работал для первой формы
Заранее благодарю за ответ!