Skip to content

Instantly share code, notes, and snippets.

@catwhocode
Created March 4, 2022 09:38
Show Gist options
  • Save catwhocode/7c1171992f59eaf2cbf378b3776b6a7a to your computer and use it in GitHub Desktop.
Save catwhocode/7c1171992f59eaf2cbf378b3776b6a7a to your computer and use it in GitHub Desktop.
Javascript: Add scroll to top button
// source:
// https://twitter.com/Amit_T18/status/1499329628804112385
const scrollToTop = document.querySelector('.scrollToTop');
scrollToTop.addEventListener('click', () => {
window.scrollTo({top:0, behaviour:"smooth",})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment