Home / Widgets / Smooth Scroll
Duplicate Snippet

Embed Snippet on Your Site

Smooth Scroll

Code Preview
js
document.querySelectorAll('a[href^="/#"]').forEach(link => {
  link.addEventListener('click', function(e) {
    e.preventDefault();
    const target = document.querySelector(this.getAttribute('href').replace('/', ''));
    if (target) {
      window.scrollTo({
        top: target.offsetTop - 80,
        behavior: 'smooth'
      });
    }
  });
});
``

Comments

Add a Comment