vote up 3 vote down star
1

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?

flag

2 Answers

vote up 8 vote down check

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|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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