Anyone found a way in a HTML document in a UIwebview to only allow horizontal scrolling.
I can use the following to prevent all scrolling:
document.ontouchmove = function(e){
e.preventDefault();
}
but I want the document to be able to scroll horizontally only.
Any ideas?
Cheers
Craig
I can use the following to prevent all scrolling:
document.ontouchmove = function(e){
e.preventDefault();
}
but I want the document to be able to scroll horizontally only.
Any ideas?
Cheers
Craig