I want to disable scrolling for my webpage, but completely, not just disable scrollbars so
overflow: hidden
will not work.
Also this workaround does not apply on Macs due to the "soft-scroll" on edges. It will show a terrible shaky animation:
window.onscroll = function () {
window.scrollTo(0,0);
}
Is there any other method to disable scrolling completely?