I am looking for a way to disable pulse scrolling on a Chrome device for Android. I have a div with a fixed height, and I want to be able to scroll through the contents of this div, but without a smooth effect.
It’s easy on iOS, I just don’t add “-webkit-overflow-scrolling: touch”, but it looks like Chrome for Android applies this automatically.
When I check the code with Chrome → Device check, I don’t see this property, so I think that Chrome does it persistently, and I did not find a way to prevent this.
I tried preventDefault for touchhend but it does not work.
Any suggestion?
Thank.:)
source
share