Any way to apply 'webkit-overflow-scrolling: touch' inline with javascript?
ios, javascript, safari, webkit
Solution
The correct syntax is
el.style.WebkitOverflowScrolling = 'touch'; // capital W
This is going (nearly) like the usual naming convention from css to JS like border-top is becoming borderTop, ... just that the webkit stuff gets a capical first letter.
Problem
have not been able to get this property show up in the DOM via jquery or native javascript. jquery doesn't seem to support it and I can't find a native name/syntax that works. Any help??