Skip to content

Instantly share code, notes, and snippets.

@chrisgoddard
Created May 2, 2016 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chrisgoddard/a5bb338e7dcb96884ccd6efac35ccb13 to your computer and use it in GitHub Desktop.
Save chrisgoddard/a5bb338e7dcb96884ccd6efac35ccb13 to your computer and use it in GitHub Desktop.
/**
* Simple regex/user agent mobile checker
* about 99% accurate when compared to 175k sessions in GA
*/
function isMobile()
{
return window.navigator.match(/Mobi|Touch|Opera\ Mini|Android/)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment