Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
document.addEventListener("DOMContentLoaded", function () {
const OFFSET = 100;
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener("click", function (e) {
const targetId = this.getAttribute("href").substring(1);
const targetEl = document.getElementById(targetId);
if (targetEl) {
e.preventDefault();
const targetPosition = targetEl.getBoundingClientRect().top + window.pageYOffset - OFFSET;
window.scrollTo({
top: targetPosition,
behavior: "smooth"
});
}
});
});
});Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
1 comment
A WordPress Commenter
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.
Comments are closed.