Skip to content

Instantly share code, notes, and snippets.

@cemerson
Created October 5, 2012 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cemerson/3839990 to your computer and use it in GitHub Desktop.
Save cemerson/3839990 to your computer and use it in GitHub Desktop.
JavaScript: Detect iPhone4 / iPhone 5
var iphone4 = (window.screen.height == (960 / 2));
var iphone5 = (window.screen.height == (1136 / 2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment