I thought when you clicked refresh, that the browser was supposed to reset your page to the top? I am using a js accordion and when I refresh, it closes the acc
js
Try this if none of the above worked. This will trick the browser to think it was at the top of the document before refresh.
$(window).on('beforeunload', function() { $(window).scrollTop(0); });