I need to disable the horizontal scrollbar on the iPad in Safari when on my site.
Ive tried e.preventDefault, but this seems to disable both vertical and horizontal scrolling.
e.preventDefault
Thank!
Insert this at the top of the html page:
<meta name="viewport" content="width=device-width" />
try it
<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" /> <style type="text/css"> body { overflow-x:hidden; }