Skip to content

Instantly share code, notes, and snippets.

@carellen
Created April 14, 2023 08:16
Show Gist options
  • Save carellen/063f33d2a7098b1e540f6c7dc122b747 to your computer and use it in GitHub Desktop.
Save carellen/063f33d2a7098b1e540f6c7dc122b747 to your computer and use it in GitHub Desktop.
Scroll to element
const anchor = document.getElementById('elementID');
window.scrollBy({
top: anchor.getBoundingClientRect().top - anchor.offsetTop,
behavior: 'smooth'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment