Skip to content

Instantly share code, notes, and snippets.

@Sanaldev
Created May 10, 2017 15:13
Show Gist options
  • Save Sanaldev/9b0193af5c0e4c1f150cb5e7fcdb5b82 to your computer and use it in GitHub Desktop.
Save Sanaldev/9b0193af5c0e4c1f150cb5e7fcdb5b82 to your computer and use it in GitHub Desktop.
JS Snippet to identify the mobile device from userAgent
function detectmob() {
if( navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
){
return true;
}
else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment