I'm currently using Gridsome in my portfolio website. But when I'm on the bottom of a page on a mobile/tablet device that is longer then the page I'm navigating to, the page doesn't scroll to the top on Firefox. On Google Chrome it works fine.
I'm using the following code to scroll to the top of a page:
window.onbeforeunload = function () {
window.scrollTo(0, 0);
}
I have tried other solutions, but nothing seems to work. I don't want to use any jquery for this solution.