Skip to content

Instantly share code, notes, and snippets.

@donut
Created October 24, 2011 21:53
Show Gist options
  • Save donut/1310438 to your computer and use it in GitHub Desktop.
Save donut/1310438 to your computer and use it in GitHub Desktop.
UA sniffing for touch-based browsers.
// Is this a touch-based device?
window.navigator.isTouchDevice =
( window.navigator.userAgent &&
window.navigator.userAgent.search(
/iPod|iPad|iPhone|IEMobile|BlackBerry|webOS|Android|Fennec/i
) !== -1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment