Skip to content

Instantly share code, notes, and snippets.

@alexcmgit
Last active March 24, 2020 17:19
Show Gist options
  • Save alexcmgit/a907b0c60581e3fdf2a9cd22c2005b6e to your computer and use it in GitHub Desktop.
Save alexcmgit/a907b0c60581e3fdf2a9cd22c2005b6e to your computer and use it in GitHub Desktop.
Function to Scroll window || any node to top with behavior smooth
function scrollTo(top = 0, left = 0, node = window) {
node.scroll({ top, left, behavior: "smooth" });
}
//Usage
node.onclick = function(){
scrollTo();
}
//With custom top, left
node.onclick = function(){
scrollTo(100, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment