(function($) { 'use strict'; function PagePreloader() { jQuery('body').removeClass('no-js'); } jQuery(window).load(function($) { PagePreloader(); }); } )(window.jQuery); /* -------------------------------------------- JS Start -------------------------------------------- */ jQuery(document).ready(function($) { /* call foundation */ $(document).foundation(); $('.sticky').addClass('fixed'); /* search */ $('.navbar-search-bar-container .search-submit').after('') // scrollup jQuery(window).bind("scroll", function() { if (jQuery(this).scrollTop() > 800) { jQuery(".scroll_to_top").fadeIn('slow'); } else { jQuery(".scroll_to_top").fadeOut('fast'); } }); jQuery(".scroll_to_top").click(function() { jQuery("html, body").animate({ scrollTop: 0 }, "slow"); return false; }); $('.slick-slider').slick({ slidesToShow:1, cssEase: 'linear', pauseOnHover:false, autoplay:true, autoplaySpeed: 4000, speed:400, prevArrow: '
', nextArrow: '
' }); }); /* -------------------------------------------- JS END -------------------------------------------- */