Skip to content

Instantly share code, notes, and snippets.

@nuclearghost
Created March 2, 2016 18:40
Show Gist options
  • Save nuclearghost/8201ecf0b9e0438bcd13 to your computer and use it in GitHub Desktop.
Save nuclearghost/8201ecf0b9e0438bcd13 to your computer and use it in GitHub Desktop.
Mobile UA Detector
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i)
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i)
},
iOS: function() {
return navigator.userAgent.match(/iPad|iPod|iPhone/i)
},
Opera: function() {
return navigator.userAgent.match(/Opera Mini/i)
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i)
},
any: function() {
return isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows()
},
iOSVersion: function() {
var a = navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/);
return [parseInt(a[1], 10), parseInt(a[2], 10), parseInt(a[3] || 0, 10)]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment