How to scroll to bottom of div?
P粉269530053
P粉269530053 2023-08-20 12:38:02
0
2
560
<p>I'm creating a chat function using Ajax requests, but I'm trying to get the message div to automatically scroll to the bottom without success. </p> <p>I wrapped everything in this div: </p> <pre class="brush:php;toolbar:false;">#scroll { height:400px; overflow:scroll; }</pre> <p>Is there a way to make it scroll to the bottom by default using JS? </p> <p>Is there a way to keep scrolling to the bottom after an Ajax request? </p>
P粉269530053
P粉269530053

reply all(2)
P粉461599845

This is much easier if you are using jQuery scrollTop:

$("#mydiv").scrollTop($("#mydiv")[0].scrollHeight);
P粉413307845

This is the code I use on my website:

var objDiv = document.getElementById("your_div");
objDiv.scrollTop = objDiv.scrollHeight;
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!