Consider I have a list of questions. When I click on the first question, it should automatically take me to the bottom of the page.
For a matter of fact, I do know
Late to the party, but here's some simple javascript-only code to scroll any element to the bottom:
function scrollToBottom(e) { e.scrollTop = e.scrollHeight - e.getBoundingClientRect().height; }