Skip to content

Instantly share code, notes, and snippets.

@is8r
Created June 27, 2014 16:03
Show Gist options
  • Save is8r/907e62e18f1001bb4bee to your computer and use it in GitHub Desktop.
Save is8r/907e62e18f1001bb4bee to your computer and use it in GitHub Desktop.
function lowerAndroid(n) {
var bo = false;
var ua = navigator.userAgent.toLowerCase();
var version = ua.substr(ua.indexOf('android')+8, 3);
if(ua.indexOf("android")) if(parseFloat(version) < n) bo = true;
return bo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment