Skip to content

Instantly share code, notes, and snippets.

@yacafx
Created March 9, 2018 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yacafx/7540ad7ab5e63375a83b754f6d71f551 to your computer and use it in GitHub Desktop.
Save yacafx/7540ad7ab5e63375a83b754f6d71f551 to your computer and use it in GitHub Desktop.
Check user agent in JS
// Check if user agent is from Apple
if(/iPad|iPhone|iPod/.test(navigator.userAgent)){
// actions
} else {
// Maybe is Android ;)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment