Skip to content

Instantly share code, notes, and snippets.

@theonlydaleking
Last active February 11, 2019 05:09
Show Gist options
  • Save theonlydaleking/c257a9385e6028b935133cd82c5423f5 to your computer and use it in GitHub Desktop.
Save theonlydaleking/c257a9385e6028b935133cd82c5423f5 to your computer and use it in GitHub Desktop.
Scrolls to a specific element in the querySelector (rather than using a package)
window.scrollTo({
top: document.querySelector('.stats__chart').scrollHeight,
behavior: "smooth"
})
or
const scrollToVideo = () => {
let e = document.getElementById('video')
e.scrollIntoView({behavior: 'smooth'})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment