-1

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.

Fantasmo Clone27
  • 333
  • 1
  • 10
  • 19

1 Answers1

1

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");
}
Arex
  • 674
  • 3
  • 10