When i am using the above function in javascript div to auto scroll in chat box but i am not able to scroll up to bottom.
window.setInterval(function() {
var elem = document.getElementById('chatlog');
elem.scrollTop = elem.scrollHeight;
}, 10);
The chatlog is a div in my code and I have put above function to scroll the replies. Now I cannot scroll up.