top of page
bottom of page
// Ensure the DOM is ready before running
$w.onReady(function () {
// Select all anchor links starting with '#'
$("a[href^='#']").on("click", function (event) {
event.preventDefault(); // Stop Wix's smooth scroll
const targetId = $(this).attr("href");
const targetElement = $(targetId);
// If the target exists, jump instantly
if (targetElement.length) {
$("html, body").scrollTop(targetElement.offset().top);
}
});
});