Check this out homies,
A slick JS way to stop iOS (and other devices that use touch) from scrolling
// Disable scrolling.
document.ontouchmove = function (e) {
e.preventDefault();
}
// Enable scrolling.
document.ontouchmove = function (e) {
return true;
}