Search code examples
javascriptjqueryhtmlcssipad

How to disable double click zooming on iPad?


When I double click somewhere on a hml page there is zooming effect on iPad appears.

How could I disable this behaviour?


Solution

  • All you have to do is add a meta tag in your html code:

    <meta 
     name='viewport' 
     content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'/>