function Scrolldown() {
window.scroll(0,300);
}
How can I use this function (or a similar one) to automatically scroll down when the page loads? (without clicking a link)
Regards,
taylor
Give this a try:
function Scrolldown() {
window.scroll(0,300);
}
window.onload = Scrolldown;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With