1$("my-element").click(function () {
2 $("html, body").animate({
3 scrollTop: 0
4 }, 1000)
5})
1window.scrollTo({top: 0, behavior: 'smooth'});
2
3reference : https://stackoverflow.com/questions/15935318/smooth-scroll-to-top
1$("a[href='#top']").click(function() {
2 $("html, body").animate({ scrollTop: 0 }, "slow");
3 return false;
4});