Skip to content

Instantly share code, notes, and snippets.

@angeloped
Forked from hkulekci/detect.js
Created February 7, 2021 13:34
Show Gist options
  • Save angeloped/c4d4c794bb0fbd297ceaa4eb80241bd0 to your computer and use it in GitHub Desktop.
Save angeloped/c4d4c794bb0fbd297ceaa4eb80241bd0 to your computer and use it in GitHub Desktop.
Detect Operating System with Javascript
// This script sets OSName variable as follows:
// "Windows" for all versions of Windows
// "MacOS" for all versions of Macintosh OS
// "Linux" for all versions of Linux
// "UNIX" for all other UNIX flavors
// "Unknown OS" indicates failure to detect the OS
var OSName="Unknown OS";
if (navigator.appVersion.indexOf("Win")!=-1) OSName="Windows";
if (navigator.appVersion.indexOf("Mac")!=-1) OSName="MacOS";
if (navigator.appVersion.indexOf("X11")!=-1) OSName="UNIX";
if (navigator.appVersion.indexOf("Linux")!=-1) OSName="Linux";
document.write('Your OS: '+OSName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment