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
The following works for me, although I did not test every single device there is to test :-)
$('body, html').css('overflow-y', 'hidden'); $('html, body').animate({ scrollTop:0 }, 0);