javascript - How to disable zoom in aosp browers? -


So basically, I'm developing a mobile website with fixed website dimensions. Using it:

  & lt; Meta name = "viewport" content = "width = device-width, initial-level = 1.0, maximum-scale = 1.0, minimum-scale = 1.0, user-scalable = no, low-UI" & gt;  

does not help I can still double-tap and pinch to zoom on old AOSP browsers (4.0 - 4.2.2). Does anyone have a solution for this issue? thank you in advanced!

Source:

Excluding Android WebKit It is evident. The Android WebKit allows the initial level to set the width of the layout viewport, if the value is 1 and there are no width instructions. Therefore only the initial scale = 1 works without any other instructions.


Comments