Smooth scroll to anchor after loading new page
As browsers automatically detect the hash and take you to that position… It occurs to me that you could first reset the scroll position to 0 and then made the smooth scrolling. Something like… // to top right away if ( window.location.hash ) scroll(0,0); // void some browsers issue setTimeout( function() { scroll(0,0); }, 1); … Read more