auto scroll to bottom of page code example
Example 1: automatically scroll to bottom of page
window.scrollTo(0,document.body.scrollHeight);
Example 2: page is automatically scrolling down to bottom
#dvLiveSearch{
overflow-anchor: none;
}
window.scrollTo(0,document.body.scrollHeight);
#dvLiveSearch{
overflow-anchor: none;
}