Force page scroll position to top at page refresh in HTML

前端 未结 13 1213
野的像风
野的像风 2020-12-02 07:57

I am building a website which I am publishing with divs. When I refresh the page after it was scrolled to position X, then the page is loaded with the scroll po

13条回答
  •  失恋的感觉
    2020-12-02 08:37

    The answer here does not works for safari, document.ready is often fired too early.

    Ought to use the beforeunload event which prevent you form doing some setTimeout

    $(window).on('beforeunload', function(){
      $(window).scrollTop(0);
    });
    

提交回复
热议问题