Skip to content

Instantly share code, notes, and snippets.

@joshtronic
Created September 25, 2010 21:12
Show Gist options
  • Save joshtronic/597309 to your computer and use it in GitHub Desktop.
Save joshtronic/597309 to your computer and use it in GitHub Desktop.
JavaScript Mobile Browser Detection
var userAgent = navigator.userAgent.toLowerCase();
var isIE = userAgent.indexOf('msie') != -1;
var isIphone = userAgent.indexOf('iphone') != -1 || userAgent.indexOf('ipad') != -1
var isAndroid = userAgent.indexOf('android') != -1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment