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.

As you can see here: http://jsfiddle.net/huJ95/ The scrolling stops like (5-10 pixels I believe) before the div starts (where the text is -> div starts, so the user would need to scroll up to see the beginning) Why is that? And how can I fix that? HTML/CSS in Jsfiddle ( I think is irrelavant).

JS:

 jQuery(document).ready(function($) {
        $("nav").on("click", "a", function(e) {
            e.preventDefault();
            $('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
        });
    });
share|improve this question

1 Answer

up vote 3 down vote accepted

Actually it's pretty straightforward, you're not taking into account the height of the nav. So the content is at the top of the page, not underneath the nav. You need to subtract this from the calculation, eg:

$('html,body').animate({scrollTop:$(this.hash).offset().top - $('nav').outerHeight()}, 500);

jsFiddle: http://jsfiddle.net/huJ95/2/

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.