I\'m running into a problem that\'s actually a \"feature\" on Chrome. As most of you might know, Chrome remembers a scroll position that it returns to, whenever you come bac
In Chrome 46+, the auto scroll behavior can be turned off using history.scrollRestoration:
if ('scrollRestoration' in history) { history.scrollRestoration = 'manual'; }
source: https://developers.google.com/web/updates/2015/09/history-api-scroll-restoration