I have disabled scrolling on the iPad using:
function disableScrolling() {
document.ontouchmove = function(e){
e.preventDefault();
}
}
Is there a way to simply enable it again?
It would be especially helpful in a function like:
function enableScrolling() {
// enable scrolling
}