🔹Auto Scroll to Bottom on New Message (Chat App)
Description
Automatically scrolls to the bottom of a chat container when a new message is added
Code Snippet
function scrollToBottom(containerId) {
const container = document.getElementById(containerId);
container.scrollTop = container.scrollHeight;
}
// Example usage after adding a new message
scrollToBottom('chat-box');