On Chrome, when I refresh while not at the very top of the page, the $(window).one('scroll'
function is triggered immediately upon page load. I have a landing page that disappears when the user scrolls. But the landing page is disappearing immediately if I refresh the page while not at the top.
I tried adding
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
above the $(window).one('scroll'
but that didn't work.
How can I reset the page to the top BEFORE Chrome reads the $(window).one('scroll'
function?
Or is there a better solution?