Role até o elemento jQuery
$('html, body').animate({
scrollTop: $("#grepperRocks").offset().top
});
Spyder
$('html, body').animate({
scrollTop: $("#grepperRocks").offset().top
});
window.scroll({
top: 0,
left: 0,
behavior: 'smooth'
});
$("my-element").click(function () {
$("html, body").animate({
scrollTop: 0
}, 1000)
})
$('#DIV_ID').scrollTop(0);
window.scrollTo({top: 0, behavior: 'smooth'});
reference : https://stackoverflow.com/questions/15935318/smooth-scroll-to-top
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});