Skip to content

Instantly share code, notes, and snippets.

@orioltf
Created January 18, 2013 12:26
Show Gist options
  • Save orioltf/4564276 to your computer and use it in GitHub Desktop.
Save orioltf/4564276 to your computer and use it in GitHub Desktop.
#JS: iOS detection. Adds an "ios" class to <html> if device is iOS
if ( navigator.userAgent.match(/(iPad|iPhone|iPod)/i) ) {
document.documentElement.className += " ios";
}
/**
* iOS: display iphone elements only to ios devices. Hide them in other devices.
*/
.iphone {display: none;}
.ios .iphone {display: block;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment