Scroll to bottom of div? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T16:23:48Zhttp://stackoverflow.com/feeds/question/270612http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/270612/scroll-to-bottom-of-div4Scroll to bottom of div?dMix2008-11-06T22:37:30Z2008-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#2706289Answer by jeremy Ruten for Scroll to bottom of div?jeremy Ruten2008-11-06T22:42:51Z2008-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#2735373Answer by Ahmad for Scroll to bottom of div?Ahmad2008-11-07T20:25:58Z2008-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>