Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The code:

<select>
    <option value="1">Home</option>
    <option value="2">About</option>
    <option value="3">Services</option>
    <option value="4">Contact</option>
</select>

When I touch select, the iPhone zooms in that element (and does not zoom out after deselecting).

How can I prevent this? Or zoom back out? I can't use user-scalable=no because I actually need that functionality. It's for iPhone, select menu.

share|improve this question
@Charlie - this blocks zoom for entire website and not only forms. – Paul Jun 16 '12 at 14:35

2 Answers

up vote 6 down vote accepted

It depend from the Viewport, you can disable it in this way:

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

add user-scalable=0 and it should work on your inputs as well.

share|improve this answer
1  
I need zoom functionality on website. I just don't want it for forms. – Paul Jun 16 '12 at 14:34
2  
try to give the font-size: 16px to: input[type="text"], input[type="number"], textarea. – Andrea Turri Jun 16 '12 at 14:46
It works starting from font-size: 40px! :) (viewport set to width=735px). Thanks! – Paul Jun 16 '12 at 16:48

This might be helpful to look at:

Disable Auto Zoom in Input "Text" tag - Safari on iPhone

You'd basically need to capture the event of tapping on a form element, then not run the default iOS action of zooming in, but still allowing it to zoom for the rest of the page.

Edit:

The link mentions,

2) You can dynamically change the META viewport tag using javascript (see Enable/disable zoom on iPhone safari with Javascript?)

To elaborate:

  1. Viewport meta tag is set to allow zooming
  2. User taps on form element, changes meta tag to disable zooming
  3. Upon pressing done, viewport is changed to allow zoom

And if you can't change the tag when clicking on a form element, put a div that mimics the form element that when you press it, it changes the tag, then calls the input.

share|improve this answer
It contains 3 solutions - none satisfy me :( (2 don't actually work in my case). – Paul Jun 16 '12 at 14:40
Edited with a possible solution – Charlie Jun 16 '12 at 15:20
Thanks @Charlie. Your solution indeed works like expected but another person suggested something simpler that is excellent in my situation. I only needed to raise SELECT's font-size to 40px (viewport width=735px). Now iPhone navigation is clearly readable and it doesn't zoom. – Paul Jun 16 '12 at 16:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.