Is it possible to dynamically set -webkit-overflow-scrolling using JavaScript? I attempted the code below but it didn't work as expected
$("#myDiv").css("-webkit-overflow-scrolling","none");
The "myDiv" element has the .scrollable class applied with the following CSS properties
.scrollable{
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}