Is there a way I could scroll to the bottom of a div when the page loads ? I've already tried multiple things but they didn't work.
Please help if you know the answer.
Is there a way I could scroll to the bottom of a div when the page loads ? I've already tried multiple things but they didn't work.
Please help if you know the answer.
Inside your body
tag apply this event trigger onload="myFunction()"
. Add <a id="bottom"></a>
to the bottom of your div.
JS:
function myFunction()
{
location.replace("pagename#bottom");
}