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'm making a one page site with sticky navigation on center top with width at about 1000px and height of about 20-25px, now i also included a smooth scroll function but my problem is whenever the page scrolls to it's active page, the title hid under the sticky nav, how do i get the offset of the bottom of the sticky navigation? Thanks.

This is the js code btw:

$('a').click(function(e) {
        var target = $(this).attr('href');
        e.preventDefault();

        $('html,body').animate({
            scrollTop: $(target).offset().top
        }, 800, 'easeInOutCirc');
    });
share|improve this question

2 Answers

jQuery's .position() method will give you the top and left offsets of the element in relation to the page. So you would just need to add the .outerHeight() of the sticky navigation to it's .position().top value.

Here's an example: http://jsfiddle.net/NUfaZ/1/

As you scroll down in the page, you'll see it's position get updated.

share|improve this answer
err sorry, but where should or how should i put that? i'm really really new to js. Thanks. – Jm Cruz Oct 8 '11 at 13:01
I've edited my answer, both to include an example and also to correct an error: jQuery doesn't have a '.pos()' method -- it's called '.position()'. – maxedison Oct 8 '11 at 13:34
Okay, now i got the outerHeight it's "20". But where do i put this "20" on my code? i tried it on scrollTop: $(target).offset({top:20}).top. but it didn't smooth scrolled. Thanks a lot btw! – Jm Cruz Oct 8 '11 at 13:58
You dont put the 20 in, outerHeight calcs it for you your variable. Look ast his example – Brad Oct 8 '11 at 14:05
Jim -- i'm having a hard time understanding the issue from your last comment. If you could create a jsFiddle, that would be very helpful. – maxedison Oct 8 '11 at 14:23
show 2 more comments

The easiest way to keep your current code as it is, and add that off-set to the top of your website, is by adding the needed offset value after the .top, like so:

$('a').click(function(e) {
    var target = $(this).attr('href');
    e.preventDefault();

    $('html,body').animate({
        scrollTop: $(target).offset().top - 20
    }, 800, 'easeInOutCirc');
});

Hope this answer is less complicated that the last one. :)

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.