0

i have a div with chat, that is already scroll-able. But i want it to scroll to last chat automatically. Here is what chat box looks like when load. enter image description here

But i want it like image below, when it loads.

enter image description here

How can i achieve this? Kind help is appreciated, Thank you!

Community
  • 1
  • 1
Noman Ali
  • 3,160
  • 10
  • 43
  • 77

2 Answers2

1

If you try to understand height and scrollheight values, the formula will be:

Element.scrollTop = Element.scrollHeight - Element.offsetHeight;

Note: Element variable stands for scroll container element.

Mr_Green
  • 40,727
  • 45
  • 159
  • 271
1
$('#div1').scrollTop($('#div1')[0].scrollHeight);
Satpal
  • 132,252
  • 13
  • 159
  • 168
Dhara Parmar
  • 8,021
  • 1
  • 16
  • 27