Created
April 30, 2012 20:08
-
-
Save dbox/2562297 to your computer and use it in GitHub Desktop.
Serve non-scalable meta for iPhone only (messes up on 2.3 Android)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
//Serve non-scalable meta for iPhone only (messes up on 2.3 Android) | |
var deviceAgent = navigator.userAgent.toLowerCase(); | |
var agentID = deviceAgent.match(/(iphone|ipod)/); | |
if (agentID) { | |
$('head').append('<meta name="viewport" content="width=390, user-scalable=0;">'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment