-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
  • 313
  • 1
  • 8
  • 18

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
  • 654
  • 3
  • 10