Reputation: 59515
I am looking to set the page scroll on page load. I can set it by div scroll top or just pixel height.
Upvotes: 2
Views: 19406
Reputation: 2579
Use window.load instead because the load of some images might affect your scrolling position
$(window).load(function() {
$(document).scrollTop(100);
});
Upvotes: 8