[javascript] How do I determine scrollHeight?

How do I determine scrollHeight of a division use css overflow:auto?

I've tried:

$('test').scrollHeight();
$('test').height(); but that just returns the size of the div not all the content

Ultimately, I'm trying to create a chat and always have the scroll bar to the current message on the screen.

So I was thinking something like the following:

var test = $('test').height();
$('test').scrollTop(test);

Thank you,

Brian

This question is related to javascript jquery

The answer is


Correct ways in jQuery are -

  • $('#test').prop('scrollHeight') OR
  • $('#test')[0].scrollHeight OR
  • $('#test').get(0).scrollHeight

You can also use:

$('#test').context.scrollHeight