Skip to content

Instantly share code, notes, and snippets.

@dbox
Created April 30, 2012 20:08
Show Gist options
  • Save dbox/2562297 to your computer and use it in GitHub Desktop.
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)
$(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