Skip to content

Instantly share code, notes, and snippets.

@carlos-sanchez
Created December 10, 2013 16:39
Show Gist options
  • Save carlos-sanchez/7893703 to your computer and use it in GitHub Desktop.
Save carlos-sanchez/7893703 to your computer and use it in GitHub Desktop.
Detect iOS
<script>
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false );
if (iOS = true){
//whatever
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment