Skip to content

Instantly share code, notes, and snippets.

@maylogger
Created March 13, 2013 12:54
Show Gist options
  • Select an option

  • Save maylogger/5151795 to your computer and use it in GitHub Desktop.

Select an option

Save maylogger/5151795 to your computer and use it in GitHub Desktop.
偵測是否為手機
function isMobile(){
return (
(navigator.userAgent.match(/Android/i)) ||
(navigator.userAgent.match(/webOS/i)) ||
(navigator.userAgent.match(/iPhone/i)) ||
(navigator.userAgent.match(/iPod/i)) ||
(navigator.userAgent.match(/iPad/i)) ||
(navigator.userAgent.match(/BlackBerry/))
);
}
if(!isMobile()) {
...your js code...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment