How to scroll to bottom on an overflow

Fixed it myself.

Here is how it was done for anyone who has the same issue.

var element = wwLib.getFrontDocument().getElementById('chatContainerBox');
element.lastElementChild.scrollIntoView(false);
1 Like