// Bind to scroll $(window).scroll(function () { //Display or hide scroll to top button if ($(this).scrollTop() > 1500) { $('.scrollup').fadeIn(); } else { $('.scrollup').fadeOut(); } }); /* Function for scroliing to top ************************************/ $('.scrollup').click(function () { $("html, body").animate({ scrollTop: 0 }, 600); return false; })