I made a form in web app with some fields. In IOs Safari it should be zoom (i think) when user tap in it. Like in this picture
But my problem is that when i tab on it nothing happens like zoom. Only virtual keyboard is open. I also want to zoom.
I am using JQuery Mobile 1.4
and this is the code for input field
<label for="fname">First Name:</label>
<input type="text" name="fname" id="fname" value="" placeholder="First Name" onKeyPress="restoreState(this)"/>
following is my view picture but it is not zoom when user tab (Iphone Safari)
Update
Following ViewPorts
i tried
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
OR
<meta name="viewport" content="initial-scale=1.0, user-scalable=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />