This sounds like there should be a solution for it all over the internet, but I am not sure why I cannot find it. I want to disable Horizontal scrolling on mobile devices. B
Setting position to relative does not work for me. It only works if I set the position of body to fixed:
document.body.style.position = "fixed"; document.body.style.overflowY = "hidden"; document.body.addEventListener('touchstart', function(e){ e.preventDefault()});