Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Created October 5, 2022 21:10
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 ZhouYang1993/b64f907958b00121a3b60a86396a4f78 to your computer and use it in GitHub Desktop.
Save ZhouYang1993/b64f907958b00121a3b60a86396a4f78 to your computer and use it in GitHub Desktop.
Detect Mobile Devices in JavaScript
function onClick() {
if ((/Android/i.test(navigator.userAgent))) {
// go to Google Play Store
}
if (/iPad|iPhone|iPod/i.test(navigator.userAgent)) {
// go to App Store
}
else {
// go to another website
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment