/* Theme Scripts */ var $ = jQuery.noConflict(); // onscroll search box close js $(window).on('scroll', function (e) { $(".search-field-form").removeClass('form-active'); }); $(document).on('click', '.mobile-menu-close', function(){ $('.navbar-collapse').removeClass('show'); }); /* Back to top Button */ jQuery(function(){ //Scroll event jQuery(window).scroll(function(){ var scrolled = jQuery(window).scrollTop(); if (scrolled > 200) jQuery('.go-top').fadeIn('slow'); if (scrolled < 200) jQuery('.go-top').fadeOut('slow'); }); //Click event jQuery('.go-top').click(function () { jQuery("html, body").animate({ scrollTop: "0" }, 500); }); });