Here\'s the dilema, I have a webpage (only for android devices) and in that page I have an input box (a text box specifically) and when it gets focus the browser zooms in. I
Typically you don't want to disable the accessibility features.
But you can get around the zoom issue by simply adding a fixed div and placing your web page inside it.
#app { position: fixed; top: 0em; bottom: 0em; left: 0em; right: 0em; overflow: scroll; }