How to define scrollHeight for division use css overflow: auto?
I tried:
$('test').scrollHeight(); $('test').height(); but that just returns the size of the div not all the content
Ultimately, I try to create a chat and always have a scroll bar to the current message on the screen.
So, I thought about the following:
var test = $('test').height(); $('test').scrollTop(test);
Thank,
Brian
javascript jquery
Brian Sep 11 '11 at 10:48 2011-09-11 22:48
source share