jQuery(window).scroll(function(){ if (jQuery(window).scrollTop() >= 100) { jQuery('nav').addClass('fixed-header'); } else { jQuery('nav').removeClass('fixed-header'); } }); jQuery(document).ready(function(){ //Check to see if the window is top if not then display button jQuery(window).scroll(function(){ if (jQuery(this).scrollTop() > 100) { jQuery('.back-to-top a').fadeIn(); } else { jQuery('.back-to-top a').fadeOut(); } }); //Click event to scroll to top jQuery('.back-to-top a').click(function(){ jQuery('html, body').animate({scrollTop : 0},800); return false; }); });