search

Home  >  Q&A  >  body text

How to scroll to bottom of div?

<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粉269530053P粉269530053522 days ago611

reply all(2)I'll reply

  • P粉461599845

    P粉4615998452023-08-21 00:34:33

    This is much easier if you are using jQuery scrollTop:

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

    reply
    0
  • P粉413307845

    P粉4133078452023-08-21 00:01:38

    This is the code I use on my website:

    var objDiv = document.getElementById("your_div");
    objDiv.scrollTop = objDiv.scrollHeight;

    reply
    0
  • Cancelreply