$(document).ready(function () { $(window).scroll(function () { if ($(this).scrollTop() > 100) { $("#back-to-top").addClass("show"); } else { $("#back-to-top").removeClass("show"); } }); $("#back-to-top").click(function () { $("html, body").animate({ scrollTop: 0 }, "slow"); }); });