Skip to content

Instantly share code, notes, and snippets.

@psynewave
Created June 7, 2014 18:12
Show Gist options
  • Save psynewave/144f6dd9e5d2dae23cd0 to your computer and use it in GitHub Desktop.
Save psynewave/144f6dd9e5d2dae23cd0 to your computer and use it in GitHub Desktop.
Mobile Device JS Detection using Touch Event
function isMobile() {
try{ document.createEvent("TouchEvent"); return true; }
catch(e){ return false; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment