Skip to content

Instantly share code, notes, and snippets.

@AskYous
Created July 8, 2015 20: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 AskYous/e87bb0bc9f6e0bd6902d to your computer and use it in GitHub Desktop.
Save AskYous/e87bb0bc9f6e0bd6902d to your computer and use it in GitHub Desktop.
Detect if User is on iPhone or Android
function detectBrowser() {
var useragent = navigator.userAgent;
var mapdiv = document.getElementById("map-canvas");
if (useragent.indexOf('iPhone') != -1 || useragent.indexOf('Android') != -1 ) {
console.log('You are on an Android or iPhone!');
} else {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment