Skip to content

Instantly share code, notes, and snippets.

@whoisryosuke
Created December 29, 2021 19:28
Show Gist options
  • Select an option

  • Save whoisryosuke/ba6ec24c6f7dfea941b528c52658ced5 to your computer and use it in GitHub Desktop.

Select an option

Save whoisryosuke/ba6ec24c6f7dfea941b528c52658ced5 to your computer and use it in GitHub Desktop.
JS - Check user platform OS - client side / frontend only - https://stackoverflow.com/a/19176790
var OSName = "Unknown";
if (window.navigator.userAgent.indexOf("Windows NT 10.0")!= -1) OSName="Windows 10";
if (window.navigator.userAgent.indexOf("Windows NT 6.3") != -1) OSName="Windows 8.1";
if (window.navigator.userAgent.indexOf("Windows NT 6.2") != -1) OSName="Windows 8";
if (window.navigator.userAgent.indexOf("Windows NT 6.1") != -1) OSName="Windows 7";
if (window.navigator.userAgent.indexOf("Windows NT 6.0") != -1) OSName="Windows Vista";
if (window.navigator.userAgent.indexOf("Windows NT 5.1") != -1) OSName="Windows XP";
if (window.navigator.userAgent.indexOf("Windows NT 5.0") != -1) OSName="Windows 2000";
if (window.navigator.userAgent.indexOf("Mac") != -1) OSName="Mac/iOS";
if (window.navigator.userAgent.indexOf("X11") != -1) OSName="UNIX";
if (window.navigator.userAgent.indexOf("Linux") != -1) OSName="Linux";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment