iscroll body scroll not working

665 views Asked by At

I have used iscroll4 for using zoom purpose.

I have used following code:

var myScroll;
function loaded() {
        myScroll = new iScroll('wrapper', { zoom:true});
}

document.addEventListener('DOMContentLoaded', loaded, false);

But I am not able to scroll the site. I have tried lot of time to search. Please track me in right direction.

In mobile i couldn't view the page after this section.

1

There are 1 answers

0
user2727195 On

Remove this line and it should work fine,

document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);