Skip to content

Instantly share code, notes, and snippets.

@ajayvarghese
Created May 23, 2018 07:11
Show Gist options
  • Save ajayvarghese/cf8ebbf9090088a692015cce6721927c to your computer and use it in GitHub Desktop.
Save ajayvarghese/cf8ebbf9090088a692015cce6721927c to your computer and use it in GitHub Desktop.
Scroll to top of website on Click of button
document.getElementsByClassName('Overview__up-arrow___Y5yuq')[0].addEventListener('click', () => {
console.log('Clicked');
yPos = window.scrollY;
k = setInterval( () => {
if(yPos >= 0){
yPos = yPos - 100;
window.scrollTo(0, yPos);
} else {
clearInterval(k);
}
}, 1)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment