Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Created October 5, 2022 21:41
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 ZhouYang1993/09252530fa43d761ba425b368a8e05d9 to your computer and use it in GitHub Desktop.
Save ZhouYang1993/09252530fa43d761ba425b368a8e05d9 to your computer and use it in GitHub Desktop.
Detect Mobile Devices in JS
function isMobile() {
try {
object.addEventListener("touchstart", myScript);
return true;
} catch(e) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment