1

I've created the following chat box:

enter image description here

I've set overflow-auto to the div.

But newer messages apear at the bottom of the div. How can I set the scrollbar to the bottom, but only for this div? (I don't want to scroll into view the chat box.)

1 Answers1

0

Use scrollTo function on the div and scroll it to: scrollHeight minus clientHeight.

See MDN:

Example: jsfiddle

nare214
  • 337
  • 2
  • 7