I haven't tried this, but something like this should work:
// Assuming you have a chat container with the ID "chatContainer"
const chatContainer = document.getElementById("chatContainer");
// Function to scroll to the bottom of the chat container
function scrollToBottom() {
chatContainer.scrollTop = chatContainer.scrollHeight;
}
Decide when you want to use this, because as a user it's super annoying if you're trying to scroll up and it keeps auto-scrolling down. You could for instance only call this when a new message appears.
Hi Shubham,
Use the below javascript code to scroll to top automatically
window.scrollTo(0,0);