I tried the code below but it didn't quite do the trick. Can someone assist me with refreshing the page to the top every time it loads?
window.addEventListener('load', function(){
window.scrollTo(0,0)
})
window.onload = (event) => {
window.scrollTo(0,0)
};