// ===== Scroll to Top ==== $(window).scroll(function() { if ($(this).scrollTop() >= 0) { // If page is scrolled more than 50px $('#floatMenu').fadeIn("25000"); // Fade in the arrow } else { $('#floatMenu').fadeOut("25000"); // Else fade out the arrow } }); $('#floatMenu').click(function() { // When arrow is clicked $('body,html').animate({ scrollTop : 0 // Scroll to top of body }, 500); });