So I have a page with a chat-like div that fills up with text. It has a fixed height and width (defined by css).
I need it to scroll to bottom upon every update, her
Have you tried with .scrollHeight:
.scrollHeight
$("#div1").animate({ scrollTop: $("#div1")[0].scrollHeight}, 1000);
scollHeight documentation at MDN