Redrawing elements ignores user-scalable=0 in Android Browser. Why?
This is the meta tag <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0"> Problem - I wanted to force a redraw (to solve another problem) when the orientation was changed by hiding and unhiding a container <div id="redraw>" . Once redraw occurs however, the Android browser now allows me to zoom in even though I had set user-scalable=0 . Why is this? My guess was that Android had changed the meta tag on redraw by setting user-scalable=1 . But this was not the case, because as you can see in the function redrawOrientation()