Scroll to bottom of div? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T16:23:48Z http://stackoverflow.com/feeds/question/270612 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/270612/scroll-to-bottom-of-div 4 Scroll to bottom of div? dMix 2008-11-06T22:37:30Z 2008-11-07T20:25:58Z <p>I am creating an ajax chat in rails and I am trying to get a div to scroll to the bottom without much luck.</p> <p>I am wrapping everything in this div:</p> <pre><code>#scroll { height:400px; overflow:scroll; } </code></pre> <p>Is there a way to keep it scrolled to the bottom by default using JS?</p> <p><strong>is there a way to keep it scrolled to the bottom after an ajax request?</strong></p> http://stackoverflow.com/questions/270612/scroll-to-bottom-of-div/270628#270628 9 Answer by jeremy Ruten for Scroll to bottom of div? jeremy Ruten 2008-11-06T22:42:51Z 2008-11-06T22:42:51Z <p>Here's what I use on my site (I didn't write it, I just found it somewhere since I don't know Javascript too well.)</p> <pre><code>var objDiv = document.getElementById("your_div"); objDiv.scrollTop = objDiv.scrollHeight; </code></pre> http://stackoverflow.com/questions/270612/scroll-to-bottom-of-div/273537#273537 3 Answer by Ahmad for Scroll to bottom of div? Ahmad 2008-11-07T20:25:58Z 2008-11-07T20:25:58Z <p>If you use jQuery then may be you can take a look at this great plugin, it has a lot of options for scrolling, check it out here <a href="http://flesler.blogspot.com/2007/10/jqueryscrollto.html" rel="nofollow">http://flesler.blogspot.com/2007/10/jqueryscrollto.html</a></p>