I am trying to send user to the bottom of page
by javascript
I am trying this code
window.scrollTo(0,document.body.scrollHeight);
it does not work
but if i try
window.scrollTo(0,9999999999999999);
it works very well
Is page height can be greater than 9999999999999999
?
Or there is better way?