jQuery desplazarse hasta arriba
$("my-element").click(function () {
$("html, body").animate({
scrollTop: 0
}, 1000)
})
Programming Is Fun
$("my-element").click(function () {
$("html, body").animate({
scrollTop: 0
}, 1000)
})
$('#DIV_ID').scrollTop(0);
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
window.scrollTo({ top: 100, left: 100, behavior: 'smooth' });
$("#scroll_icon").click(function()
{
jQuery('html,body').animate({scrollTop:0},2000);
})