I want to build a chat system and automatically scroll to the bottom when entering the window and when new messages come in. How do you automatically scroll to the bottom of
I could not get any of below answers to work but simple js did the trick for me:
window.scrollTo({ top: document.body.scrollHeight, left: 0, behavior: 'smooth' });