To begin with:
The issue that arises when trying to forcefully scroll the screen all the way down is that it restricts any further movement on the screen - since each scroll action resets the position.
One approach to address this is by utilizing JQuery
and monitoring the scroll
event.
Here's an example:
$(document).on('scroll', function(){
console.log('yeah');
// window.scrollTo(0,document.body.scrollHeight); // left this commented out
});
You can achieve the same without JQuery as well, just using plain JavaScript
document.onscroll = function(){
console.log('oh yeah');
// window.scrollTo(0,document.body.scrollHeight); // left this commented out
}