Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Created December 13, 2016 09:08
Show Gist options
  • Save rafaelmaeuer/b8e421bd327b1e57f0c31f8357ee82fc to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/b8e421bd327b1e57f0c31f8357ee82fc to your computer and use it in GitHub Desktop.
function iOSversion() {
if (/iP(hone|od|ad)/.test(navigator.platform)) {
// supports iOS 2.0 and later: <http://bit.ly/TJjs1V>
var v = (navigator.appVersion).match(/OS (\d+)_(\d+)_?(\d+)?/);
return [parseInt(v[1], 10), parseInt(v[2], 10), parseInt(v[3] || 0, 10)];
}
}
ver = iOSversion();
if (ver[0] >= 5) {
alert('This is running iOS 5 or later.');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment