Skip to content

Instantly share code, notes, and snippets.

@ElijahLynn
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ElijahLynn/1506df053c2677f08301 to your computer and use it in GitHub Desktop.
Save ElijahLynn/1506df053c2677f08301 to your computer and use it in GitHub Desktop.
Scroll up for history on IRCCloud
// http://stackoverflow.com/a/2133217/292408
function scrollToTop() {
$( "div.scroll" ).scrollTop( -10000 )
}
setInterval( scrollToTop, 1000 );
// clearInterval(tid);
@Michagogo
Copy link

Should probably prepend "var tid = " to line 7, no?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment