Skip to content

Instantly share code, notes, and snippets.

@RhinoLu
Created January 15, 2016 07:46
Show Gist options
  • Save RhinoLu/079f75c115b024dcbb07 to your computer and use it in GitHub Desktop.
Save RhinoLu/079f75c115b024dcbb07 to your computer and use it in GitHub Desktop.
js get android version
// http://stackoverflow.com/questions/7184573/pick-up-the-android-version-in-the-browser-by-javascript
function getAndroidVersion(ua) {
ua = (ua || navigator.userAgent).toLowerCase();
var match = ua.match(/android\s([0-9\.]*)/);
return match ? match[1] : false;
};
getAndroidVersion(); //"4.2.1"
parseInt(getAndroidVersion(), 10); //4
parseFloat(getAndroidVersion()); //4.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment