Skip to content

Instantly share code, notes, and snippets.

@giuliandrimba
Created May 24, 2012 18: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 giuliandrimba/2783401 to your computer and use it in GitHub Desktop.
Save giuliandrimba/2783401 to your computer and use it in GitHub Desktop.
JavaScript: Check mobile browser
function is_mobile() {
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/) ||
navigator.userAgent.match(/Windows Phone/i) ||
navigator.userAgent.match(/ZuneWP7/i)
) {
// some code
return true
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment