Skip to content

Instantly share code, notes, and snippets.

@anova
Created July 28, 2025 14:58
Show Gist options
  • Select an option

  • Save anova/be2ebb5a38b0f4a689bc160fd3cf250a to your computer and use it in GitHub Desktop.

Select an option

Save anova/be2ebb5a38b0f4a689bc160fd3cf250a to your computer and use it in GitHub Desktop.
Scrolls to section with smooth animation.
window.scrollToSection = function(where) {
const headerHeight = document.getElementById('header-navigation').offsetHeight,
offsetTop = document.getElementById(where).offsetTop,
scrollDistance = offsetTop - headerHeight;
window.scrollTo({top: scrollDistance, behavior: 'smooth' });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment