Skip to content

Instantly share code, notes, and snippets.

@joemaygist
Created April 24, 2013 15:08
Show Gist options
  • Save joemaygist/5452857 to your computer and use it in GitHub Desktop.
Save joemaygist/5452857 to your computer and use it in GitHub Desktop.
Javascript: User agent detection(mobile)
_detectBrowser: function() {
this.isMobile = false;
var mobileVendors = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i;
if (mobileVendors.test(navigator.userAgent)) {
this.isMobile = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment