I am creating an ajax chat in rails and I am trying to get a div to scroll to the bottom without much luck.

I am wrapping everything in this div:

#scroll {
    height:400px;
    overflow:scroll;
}

Is there a way to keep it scrolled to the bottom by default using JS?

is there a way to keep it scrolled to the bottom after an ajax request?

link|improve this question

feedback

3 Answers

up vote 67 down vote accepted

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.)

var objDiv = document.getElementById("your_div");
objDiv.scrollTop = objDiv.scrollHeight;
link|improve this answer
2  
At 27.8k, I say you're a damn liar. ;) – ajax81 Dec 29 '11 at 2:29
2  
is this method ok with all browsers? – Paul Dinh Mar 2 at 10:35
feedback

This is much easier if you're using jQuery:

$("#mydiv").scrollTop($("#mydiv")[0].scrollHeight);
link|improve this answer
How is this easier? – Omar Apr 3 at 10:49
1  
1 Line instead of 2? no clue, but what you can do easily with JQuery is animate the action like so: $("#div-id").animate({scrollTop:$("#div-id")[0].scrollHeight}, 1000); hope this helps anyone :) – Sam Apr 4 at 13:07
Why the [0] if you are grabbing a unique id="mydiv"? – hobbes3 Apr 27 at 13:28
feedback

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 http://flesler.blogspot.com/2007/10/jqueryscrollto.html

link|improve this answer
1  
That would be cool if you provide the way to do this and not only the link to the plugin. I personally failed to achieve this with the plugin, though I didn't tried hard, since the accepted solution worked for me. With this plugin I was trying: $(".messages").scrollTo("max"), $(".messages").scrollTo(999) to no avail. – dolzenko Jan 11 '10 at 19:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.