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:
- Document ready
- Fixed nav slides down from top 550px
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!