Last active
December 27, 2015 16:19
-
-
Save EpokK/7353997 to your computer and use it in GitHub Desktop.
scroll to bottom of div
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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