Skip to content

Instantly share code, notes, and snippets.

@popey456963
Created April 1, 2016 18:57
Show Gist options
  • Save popey456963/c60a16ed0d9b8f7b26df135590f455fb to your computer and use it in GitHub Desktop.
Save popey456963/c60a16ed0d9b8f7b26df135590f455fb to your computer and use it in GitHub Desktop.
Better Auto-scroll
window.setInterval(function() {
var elem = document.getElementById('robinChatWindow');
elem.scrollTop = elem.scrollHeight;
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment