How to scroll to bottom of div?
P粉269530053
2023-08-20 12:38:02
<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>
This is much easier if you are using jQuery scrollTop:
This is the code I use on my website: