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.
//
Without JQuery code, Hope this will help you.
function TopscrollTo() { if(window.scrollY!=0) { setTimeout(function() { window.scrollTo(0,window.scrollY-30); TopscrollTo(); }, 100); } }
call this TopscrollTo() function on button click event or on any other element/event which you want.