Skip to content

Instantly share code, notes, and snippets.

@wasim117
Last active August 29, 2015 14:07
Show Gist options
  • Save wasim117/2261e2c3068ef9d282ad to your computer and use it in GitHub Desktop.
Save wasim117/2261e2c3068ef9d282ad to your computer and use it in GitHub Desktop.
Get Operating system and browser using JavaScript
var os = (function() {
var ua = navigator.userAgent.toLowerCase();
return {
isWin : /windows/.test(ua),
ismacOs : /mac os/.test(ua)
};
}());
var browser = (function() {
var ua = navigator.userAgent.toLowerCase();
return {
isIE: /trident/.test(ua),
isFirefox: /firefox/.test(ua),
isChrome: /chrome/.test(ua),
isSafari: /safari/.test(ua),
};
}());
alert(os.isWin);
alert(os.isChrome);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment