No Scrolling on Mobile
document.addEventListener('touchmove',
e => e.preventDefault(), { passive: false });
document.body.innerHTML = 'Hi, no page scrolling here...';
It’s common to want to prevent page scrolling on mobile. Here is an easy way to do it.