patternjavascriptCritical
Scroll to bottom of div?
Viewed 0 times
bottomscrolldiv
Problem
I am creating a chat using Ajax requests and I'm trying to get messages div to scroll to the bottom without much luck.
I am wrapping everything in this div:
Is there a way to keep it scrolled to the bottom by default using JS?
Is there a way to keep it scrolled to the bottom after an ajax request?
I am wrapping everything in this div:
#scroll {
height:400px;
overflow:scroll;
}Is there a way to keep it scrolled to the bottom by default using JS?
Is there a way to keep it scrolled to the bottom after an ajax request?
Solution
Here's what I use on my site:
var objDiv = document.getElementById("your_div");
objDiv.scrollTop = objDiv.scrollHeight;Code Snippets
var objDiv = document.getElementById("your_div");
objDiv.scrollTop = objDiv.scrollHeight;Context
Stack Overflow Q#270612, score: 1776
Revisions (0)
No revisions yet.