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
This works for me:
window.addEventListener("touchstart", function(event){ if(event.target.tagName=="HTML" || event.target.tagName=="BODY"){ event.preventDefault(); } } ,false);
It does not work 100% and I also added this:
window.addEventListener("scroll",function(){ window.scrollTo(0,0) },false)