According to many sources, a meta tag like this is supposed to prevent the browser from letting the user zoom in and out of the page:

<meta name="viewport" content="user-scalable=no">

This works correctly on most mobile browsers, including iOS and most Android phones I've tested. However, the Samsung Galaxy S (Sprint Epic) does not respect it, instead allowing arbitrary zoom in/out by the user.

You can see this by visiting the Facebook "touch screen" page at http://touch.facebook.com/ - on most phones you can't zoom in that page, but on the Galaxy S you can. I've also confirmed that the Galaxy S II correctly respects the meta tag, so this seems limited to the Galaxy S.

Is this just a bug in the Galaxy S's build of the browser? Is there any work-around that doesn't fail on other devices?

link|improve this question

50% accept rate
I had noticed that I can zoom in on more pages then other peoples phones. I like it this way to be honest. – asawyer Nov 22 '11 at 15:34
I suspect it's not so much a bug as a feature. What possible reason could you have for not letting people zoom in? – robertc Dec 1 '11 at 22:55
2  
robertc: Some pages are already designed to be used like mobile apps on small screen with a touch-based interface. Allowing the user to zoom in and scroll around the page would then make it more confusing, reduce usability, and possibly interfere with how the page's user interface is supposed to work. – Angus Dec 30 '11 at 5:19
feedback

1 Answer

i use this

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">

and it works on my galaxy s

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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