I\'m looking for a simple, cross-browser \"scroll to top\" animation I can apply to a link. I don\'t want to require a JS library such as jQuery/Moo, etc.
//
No one mentioned the CSS property scroll-behavior
CSS
html { scroll-behavior: smooth; }
JS
window.scrollTo(0,0)