jquery scroll bottom code example
Example 1: scroll to top jquery
window.scrollTo({top: 0, behavior: 'smooth'});
reference : https://stackoverflow.com/questions/15935318/smooth-scroll-to-top
Example 2: jquery scroll to bottom
$(window).load(function() {
$("html, body").animate({ scrollTop: $(document).height() }, 1000);
});