jQuery UI sortable() - listitem jumps to top in Safari and Chrome

后端 未结 7 826
走了就别回头了
走了就别回头了 2020-12-17 09:23

I have a sortable unordered list on the bottom of my page, which works perfect in Firefox. However, in Safari/Chrome the grabbed listitem jumps instantly to the top of the p

相关标签:
7条回答
  • 2020-12-17 10:26

    For me, the problem came from css overflow on body :

    body { overflow-x: hidden; }
    

    Removing this line completely fix the problem.

    0 讨论(0)
提交回复
热议问题