Skip to content

Instantly share code, notes, and snippets.

@jayhjkwon
Created October 24, 2013 02:18
Show Gist options
  • Save jayhjkwon/7130214 to your computer and use it in GitHub Desktop.
Save jayhjkwon/7130214 to your computer and use it in GitHub Desktop.
scroll to the bottom
var div = $('.friends-item-list')[0];
window.scrollTo(0, div.scrollHeight);
var div = $('.friends-item-list')[0];
div.scrollTop = div.scrollHeight;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment