Home >Web Front-end >JS Tutorial >How Do I Keep a Div Scrolled to the Bottom in JavaScript?
Scrolling to the Bottom of a Div
When creating chat applications with Ajax requests, it's often necessary to ensure that the chat window scrolls to the bottom to display incoming messages. This can be achieved using JavaScript.
Keeping the Div Scrolled to the Bottom by Default
To keep a div scrolled to the bottom by default, you can use the following code:
var objDiv = document.getElementById("scroll"); // Replace "scroll" with the ID of your div objDiv.scrollTop = objDiv.scrollHeight;
Scrolling to the Bottom After an Ajax Request
To scroll the div to the bottom after an Ajax request, you can add the following code to the success callback:
$.ajax({ // Your Ajax request code success: function(data) { // After the Ajax request var objDiv = document.getElementById("scroll"); // Replace "scroll" with the ID of your div objDiv.scrollTop = objDiv.scrollHeight; } });
The above is the detailed content of How Do I Keep a Div Scrolled to the Bottom in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!