$(document).ready(function() { $(window).scroll(function(){ if (40 < $(window).scrollTop()) { $("#site-header").addClass("fixheader"); } else { $("#site-header").removeClass("fixheader"); } }) $('.nav-bg').hover(function(e){ $(this).stop().fadeIn(); },function(){ $(this).stop().fadeOut(); }) $(".menu-toggle").on('click', function() { $(this).toggleClass("on"); $("#overmenu").toggleClass("showMenu"); }); $("#overmenu li.menu-item-has-children>a").on("click", function(e) { "use strict"; e.preventDefault(); $(this).closest('li').toggleClass('open'); $(this).next('.sub-menu').slideToggle(); }); var btn = $('#toTop'); $(window).scroll(function() { if ($(window).scrollTop() > 300) { btn.fadeIn(); } else { btn.fadeOut(); } }); btn.on('click', function(e) { e.preventDefault(); $('html, body').animate({scrollTop:0}, '300'); }); });