Javascript Scrolling all the way up in Google Hangouts

1k Views Asked by At

How can I scroll all the way up to the beginning of the chat in Google Hangouts?

I tried window.scrollTo(0,0); and some other things but they don't seem to work.

1

There are 1 best solutions below

1
On

Try this:

$('html,body').scrollTop(0);