jQuery scrollTop not working in Chrome but working in Firefox

后端 未结 15 1819
再見小時候
再見小時候 2020-11-29 02:54

I have used a scrollTop function in jQuery for navigating to top, but strangely \'the smooth animated scroll\' stopped working in Safari and Chrome (scrolling w

15条回答
  •  心在旅途
    2020-11-29 03:51

    If your CSS html element has the following overflow markup, scrollTop will not function.

    html {
        overflow-x: hidden;
        overflow-y: hidden;
    }
    

    To allow scrollTop to scroll, modify your markup remove overflow markup from the html element and append to a body element.

    body { 
        overflow-x: hidden;
        overflow-y: hidden;
    }
    

提交回复
热议问题