Click here to Skip to main content
15,886,774 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Can any one please give me the code to find out operating system name through jquery.



Regards
Chaithanya M
Posted
Updated 2-May-11 2:55am
v4

 
Share this answer
 
First link in google for the search term "jquery detect OS":

http://www.stoimen.com/blog/2009/07/16/jquery-browser-and-os-detection-plugin/[^]
 
Share this answer
 
jQuery(document).ready(function () {
console.log(navigator.appVersion);


}


C#
jQuery(document).ready(function () {

    var OSName = "Unknown OS";
    if (navigator.appVersion.indexOf("Win") != -1) OSName = "Windows";
    else if (navigator.appVersion.indexOf("Mac") != -1) OSName = "MacOS";
    else if (navigator.appVersion.indexOf("X11") != -1) OSName = "UNIX";
    else if (navigator.appVersion.indexOf("Linux") != -1) OSName = "Linux";

    console.log('Your OS is: ' + OSName);

}


Both of the above code will work..
 
Share this answer
 
refer below link for jquery snippet that will detect OS,Browser and version.

http://snipplr.com/view/63137/browseros-detection/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900