lasthourhosting/js/back-to-top.js
Gary 4cbc87b6e2 add video
formatting header
2026-03-25 16:35:49 -07: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");
});
});