I'm trying to disabled the momentum/inertial scrolling on a website, it works fine on desktop but on an iPad and Android phone it doesn't work. The momentum scrolling keeps being applied.
Here is what I have in the CSS
-webkit-overflow-scrolling: auto;
-webkit-overflow-scrolling: auto !important;
overflow-scrolling: auto;
overflow-scrolling: auto !important;
overflow:scroll;
I've tried all the combination of the above but still no luck.
Is there something I'm missing here? Can it be achieved by javascript?