How can I scroll to the bottom of a container with overflow-y:scroll and height:100vh?
CSS
#content {
height: 100vh;
overflow-y: scroll;
}
JavaScript
var content = document.getElementById('content');
window.scrollTo(0, content.scrollHeight);
Here is the CodePen example: https://codepen.io/betchi/pen/zjBwgx