🔹Auto Scroll to Bottom on New Message (Chat App)

By: Paypal August 4, 2025 JavaScript

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');

Discussion (0)