Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set scroll position on page load

I am looking to set the page scroll on page load. I can set it by div scroll top or just pixel height.

like image 625
ThomasReggi Avatar asked Jan 30 '26 15:01

ThomasReggi


1 Answers

$(document).ready(function() {
    $(document).scrollTop(100);
});
like image 50
Wing Lian Avatar answered Feb 02 '26 05:02

Wing Lian