shiloh-website/js/back-to-top.js
2026-01-27 14:04:37 -08:00

14 lines
320 B
JavaScript

$(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");
});
});