2025-05-13 10:04:58 +02:00

20 lines
520 B
JavaScript

const body = document.querySelector("body");
const vpsCard = document.getElementById("vps-card");
body.addEventListener('scroll', () =>
{
const scrollTop = window.scrollY;
const scrollHeight = document.documentElement.scrollHeight;
const clientHeight = document.documentElement.clientHeight;
if (scrollTop + clientHeight >= scrollHeight) {
console.log("Reached the bottom of the page");
}
}
);
vpsCard.addEventListener('click', () =>
{
}
);