I want to get scroll bar at bottom of div as soon as page loads but it is not working
My design:
<div class="panel-body" id="dvMsgBody" style="padding: 0px;">
<div id="dvMessage" class="col-lg-12" style="height: 500px; overflow: auto; margin: 0px; padding: 0px; width: 100%;">
</div>
</div>
My jQuery:
//not working
{
$("#divChatWindow").find('#dvMsgBody').find('#dvMessage').scrollTop($('#dvMessage')[0].scrollHeight);
}
//not working
{
$("#divChatWindow").find('#dvMsgBody').find('#dvMessage').animate({ scrollTop: $('#dvMessage')[0].scrollHeight }, 1000);
}
//not working
{
$('#dvMessage').scrollTop($('#dvMessage')[0].scrollHeight);
}