I am working on a HTML5 mobile application and we want to disable zooming on all pages.
Adding this meta tag seem to work except users can scroll + zoom which we don't want.
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
How can I disable it completely?
BTW, I have added this to CSS also.
-webkit-text-size-adjust: none;
touch-action: none;