css stick scroll to bottom code example
Example 1: keep div at the bottom of page
#footer {
position: fixed;
bottom: 0;
width: 100%;
}
Example 2: html scroll div to top
var myDiv = document.getElementById('containerDiv');
myDiv.innerHTML = variableLongText;
myDiv.scrollTop = 0;