Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
3  
Using anchors is not an option? If not, set up your code inside the jQuery .ready() function and scroll to any position. – feeela Dec 16 '12 at 0:52
How do you want to set it? – johan Dec 16 '12 at 0:52
@feeela anchor is an option, but I be ok with setting it via pixel from top. – ThomasReggi Dec 16 '12 at 0:53
@feeela I have jquery doc ready – ThomasReggi Dec 16 '12 at 0:54
4  
What have you tried? – undefined Dec 16 '12 at 0:54
show 2 more comments

2 Answers

$(document).ready(function() {
    $(document).scrollTop(100);
});
share|improve this answer

Use window.load instead because the load of some images might affect your scrolling position

$(window).load(function() {
      $(document).scrollTop(100);
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.