Skip to content

Instantly share code, notes, and snippets.

@Dammmien
Created May 23, 2013 09:28
Show Gist options
  • Save Dammmien/5634910 to your computer and use it in GitHub Desktop.
Save Dammmien/5634910 to your computer and use it in GitHub Desktop.
Detect Touch Device
var ua = navigator.userAgent,
isApple = /iPad/i.test(ua) || /iPhone/i.test(ua),
isAndroid = ua.toLowerCase().indexOf("android") > -1;
if(isAndroid || isApple) {
// do something ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment