Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page with quite a bit of content and I'm using ScrollTop and a nav bar to get people around. I also set the destination on the page based so that when you come you may go to different parts of the page. My problem is that when I run ScrollTop on document ready, it always falls short of its mark by not quite making it to the div I refer to (Note: On initial load it needs to offset by an amount so the nav bar can also slide in. I suspect this may be the culprit). It only happens on ready, once that initial move is done and the offset is no longer factored, the nav ScrollTop always works. What gives?

So here's the process as I imagine it working:

  1. Document ready
  2. Fixed nav slides down from top 550px
  3. html slides down to div #day2main while accounting for distance nav has dropped (this is where the wheels fall off)

    $(document).ready(function(e) {
        var initialOffset = 550;
        $('html, body').animate({
            scrollTop: $("#day2main").offset().top+initialOffset
        }, 1000); 
    
    $('.sectionlink').click(function(event){ //this is the nav, it works fine.
        event.preventDefault();
        closeNav(); //not shown but working
        if (firstClick === false){
            $('html,body').animate({scrollTop:$(this.hash).offset().top-initialOffset}, 1000);
            firstClick = true;
        } else {
            $('html,body').animate({scrollTop:$(this.hash).offset().top-50}, 1000);
        }
    });
    

    });

Thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.