2

Hello I have a chat example

https://bootsnipp.com/snippets/vrzGb

and I want to scroll to the bottom with:

window.scrollTo(0,document.body.scrollHeight);

But I need it for the class .chat_area. How can I do that?

 $('.chat_area').scroll(0,document.body.scrollHeight);
mogli mogli
  • 263
  • 1
  • 5
  • 15

1 Answers1

0

Try this jquery :

$(".chat_area").animate({ scrollTop: $(document).height() }, "slow");
  return false;
Sushant Bassi
  • 364
  • 3
  • 16