Skip to content

Instantly share code, notes, and snippets.

@is8r
Created October 7, 2011 00:13
Show Gist options
  • Save is8r/1269096 to your computer and use it in GitHub Desktop.
Save is8r/1269096 to your computer and use it in GitHub Desktop.
アンドロイドのバージョン判別
var bo = lowerAndroid(2.2);
alert(bo);//2.2(含まない)以下はtrue
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