I am using iScroll4 and it\'s working great!
This are the functions I use to init, refresh and end iScroll:
function iniciarIscroll(){
/*En ie7 no lo
You just need to make this changes in the loader of the iscroll:
Change this line:
myScroll = new iScroll('wrapper');
For this:
myScroll = new iScroll('wrapper', {
useTransform: true,
zoom: false,
onBeforeScrollStart: function (e) {
var target = e.target;
while (target.nodeType != 1) target = target.parentNode;
if (target.tagName != 'SELECT' && target.tagName != 'INPUT' && target.tagName != 'TEXTAREA')
e.preventDefault();
}
});