My DIV is configured with overflow-y set to scroll.
.scrolling-div {
width: 85%;
height: 200px;
overflow-y: scroll;
}
If I have an abundance of content within this div, my goal is for it to automatically scroll to the bottom upon loading the page. I am interested in having a smooth animation as it scrolls (starting from the top and gradually moving to the bottom).
How can I achieve this using Javascript, Jquery, or CSS? Additionally, I would like to have the ability to adjust the speed of the scrolling animation.