Skip to content

Instantly share code, notes, and snippets.

@EpokK
Last active December 27, 2015 16:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EpokK/7353997 to your computer and use it in GitHub Desktop.
Save EpokK/7353997 to your computer and use it in GitHub Desktop.
scroll to bottom of div
window.onload = function () {
var objDiv = document.getElementById("idOfYourDiv");
objDiv.scrollTop = objDiv.scrollHeight;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment