$(document).ready(function() { $('.Homeslider').slick({ dots: false, arrows: false, infinite: true, autoplay:true, autoplaySpeed:4000, speed: 500 }); }); // mobile nav toggle $(".mobileMenu").hide(); $("#toggleMenu").click(function(){ event.stopPropagation(); $(".mobileMenu").slideToggle("fast"); }); $(document).click( function(){ $(".mobileMenu").slideUp("fast"); }); // scroll to top $(document).ready(function(){ //Check to see if the window is top if not then display button $(window).scroll(function(){ if ($(this).scrollTop() > 100) { $('.scrollToTop').fadeIn(); } else { $('.scrollToTop').fadeOut(); } }); //Click event to scroll to top $('.scrollToTop').click(function(){ $('html, body').animate({scrollTop : 0},500); return false; }); });