Try this:
$('html, body').animate({scrollTop: '0px'}, 300);
You can do this with 0 instead of 300 to be instant, but this gives a quick auto-scroll effect.
Try this:
$('html, body').animate({scrollTop: '0px'}, 300);
You can do this with 0 instead of 300 to be instant, but this gives a quick auto-scroll effect.