Reputation: 94
I want to set div scroll always from bottom for chat box like showing in image below, Other solution also acceptable.
Upvotes: 2
Views: 6831
Reputation: 4045
I managed to do it like this:
Let's suppose:
<div id="chat-scroll-container">
<div id="chat-content">
... your messages ...
</div>
</div>
You can do it like this:
$('#chat-scroll-container').getNiceScroll(0).doScrollTop($('#chat-content').height());
If you don't want to use any animation, do it like this:
$('#chat-scroll-container').getNiceScroll(0).doScrollTop($('#chat-content').height(), -1); // -1 is the animation duration
Upvotes: 3