1$("my-element").click(function () {
2 $("html, body").animate({
3 scrollTop: 0
4 }, 1000)
5})
1$("a[href='#top']").click(function() {
2 $("html, body").animate({ scrollTop: 0 }, "slow");
3 return false;
4});
1 $("#scroll_icon").click(function()
2 {
3 jQuery('html,body').animate({scrollTop:0},2000);
4 })