Akash
Akash

Reputation: 295

iscroll body scroll not working

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.

Upvotes: 2

Views: 664

Answers (1)

user2727195
user2727195

Reputation: 7340

Remove this line and it should work fine,

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

Upvotes: 0

Related Questions