(function ($) { // header starts $(window).scroll(function () { var scroll = $(window).scrollTop(); if (scroll >= 36) { $(".ttk_header").addClass("scroll"); } else { $(".ttk_header").removeClass("scroll"); } }); jQuery("#togglebtn").click(function () { jQuery(".ttk_header").toggleClass("active"); jQuery("#togglebtn").addClass("active_menu"); setTimeout(() => { jQuery("#togglebtn").removeClass("active_menu"); }, 1000) }); // header ends $('.ttk_footer_each .ttk_footer_each--title').on('click', function (e) { e.preventDefault(); $(this).toggleClass('active'); $(this).next('.ttk_footer_each_list, .ttk_footer_each_list_v2').slideToggle(); }); $('.txt_field').on('focus', function () { $(this).closest('.txt_box').addClass('onfocus'); }).on('blur', function () { smartchefFun(); function smartchefFun() { jQuery(document).find('.smart_id').on('click', function (e) { jQuery(this).parents(".year_section").find('.smartChefTab1').toggle(); }); jQuery(document).find('.smart_id2').on('click', function (e) { jQuery(this).parents(".year_section").find('.smartChefTab2').toggle(); }); jQuery(".smartChefTab2 .nav-item").each(function () { jQuery(this).click(() => { var text = jQuery(this).find("a.nav-link").text(); jQuery('.smart_id2').text(text); jQuery('.smart_id2').trigger("click"); }); }); jQuery(".smartChefTab1 .nav-item").each(function () { jQuery(this).click(() => { var text = jQuery(this).find("a.nav-link").text(); jQuery('.smart_id').text(text); jQuery('.smart_id').trigger("click"); }); }); } if ($(this).val() == '') { $(this).closest('.txt_box').removeClass('input-filled onfocus') } else { $(this).closest('.txt_box').removeClass('onfocus'); $(this).closest('.txt_box').addClass('input-filled'); } }); $(".header-secondary").on("click", function () { this.classList.toggle("active") }); $('.inputFile').fileinput({ multipleText: '{0} files', showMultipleNames: true, buttonClass: 'btn', }); $(document).on('click', '.search_form', function (e) { var searchText = $("#gsearch").val(); window.location.href = "https://stage.ttkprestige.com/?s=" + searchText; }) $('#gsearch').keypress(function (e) { var key = e.which; if (key == 13) // the enter key code { var searchText = $("#gsearch").val(); window.location.href = "https://stage.ttkprestige.com/?s=" + searchText; } }); // left sticky navbar $('#sidebar .nav-pills a').on('click', function () { var _id = $(this).attr('data-bs-target'); $('#sidebar .nav-pills a').removeClass('active'); $(this).addClass('active'); $('.tab-content .investor22-tab').hide(); $(_id).show(); }); $('#enquire-now, #enquire-now-2').on('click', function () { $("#franchise-form").addClass("active"); $("#franchise-form").show(); $("#franchise-form .back-to").show(); $(".enquiryform-leftside-content").addClass("in_active_content"); $(".enquiryform-leftside-content").hide(); }); $("#franchise-form .back-to").on("click",function() { $("#franchise-form").removeClass("active"); $("#franchise-form").hide(); $("#franchise-form .back-to").hide(); $(".enquiryform-leftside-content").removeClass("in_active_content"); $(".enquiryform-leftside-content").show(); }); }(jQuery))