OVERFLOW AUTO SCROLL TO BOTTOM code example
Example 1: javascript scroll to bottom of div
//scroll to the bottom of "#myDiv"
var myDiv = document.getElementById("myDiv");
myDiv.scrollTop = myDiv.scrollHeight;
Example 2: javascript scroll to bottom of div
$("#mydiv").scrollTop($("#mydiv")[0].scrollHeight);
Example 3: javascript auto scroll on overflow to bottom
window.setInterval(function() {
var elem = document.getElementById('data');
elem.scrollTop = elem.scrollHeight;
}, 5000);