This is div.
<div id='showmymessage' style="height:490px;overflow:auto;">
Hey nothing is working in my case. Div is set to overflow:auto
.
I tried all these ways but scrollbar is not loading at bottom position.
document.getElementById('showmymessage').scrollTop = 99999999999;
var myDiv = document.getElementById('showmymessage'); myDiv.scrollTop = myDiv.scrollHeight;
$('#showmymessage').scrollTop($('#showmymessage')[0].scrollHeight);
Please somebody tell if I made any mistake and try to help.