Get cpu Class : navigator « Javascript Objects « JavaScript DHTML






Get cpu Class

  
    
<html>
<head>
<script language="JavaScript">
function function1() {
    var m = navigator.cpuClass;
    if (m == "x86") {
        n = "Intel processor";
    } else if (m == "68K") {
        n = "Motorola processor";
    } else if (m == "Alpha") {
        n = "Digital processor"
    } else if (m == "PPC") {
        n = "Motorola processor";
    } else {
        n = "Unknown processor";
    }
    alert("The CPU of this machine is "+'"'+m+'"\n'+n); 
} 
</script>
<body>
<input type="button" value="Click here" onClick="function1();">
</body>
</html>

    
      
        
    
  








Related examples in the same category

1.Get browser Language
2.Language information from Navigator
3.Get application Name
4.Application Code Name
5.Is onLine
6.Get platform information
7.Is Java enabled
8.Get applicatoin Version
9.Get application Minor Version (navigator.appMinorVersion)
10.Get system Language from navigator (navigator.systemLanguage)
11.Is navigator taint Enabled (navigator.taintEnabled())
12.Get user Agent from navigator (navigator.userAgent)
13.Get user Language from navigator object (navigator.userLanguage)
14.Get application name from navigator (navigator.appName)
15.List all plugins
16.Get the browser version through navigator.appVersion
17.Use userAgent to get the browser type
18.Open Window based on user defined attributes
19.navigator.mimeTypes[1].description
20.navigator.mimeTypes[1].type
21.navigator.plugins[3].description
22.navigator.userAgent
23.navigator.appName
24.navigator.appCodeName
25.navigator.appVersion
26.navigator.appMinorVersion
27.navigator.platform
28.navigator.cookieEnabled
29.navigator.onLine
30.navigator.userLanguage
31.Display all values in navigator object