Open In App

HTML DOM Navigator appName Property

Navigator appName Property:

Syntax:



navigator.appName

Note: This property has been deprecated and is no longer used.

Below program illustrates the Navigator appName Property: 
Getting the code name of the browser. 






<!DOCTYPE html>
<html>
  
<head>
    <title>
      Navigator appName Property in HTML
    </title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>Navigator appName Property</h2>
  
    <p>
      For returning the name of the current browser, 
      double click the "Return Browser Name" button: 
    </p>
  
    <button ondblclick="browsername()">
      Return Browser Name
    </button>
  
    <p id="browser"></p>
  
    <script>
        function browsername() {
            var b = "Browser Name: " + navigator.appName;
            document.getElementById("browser").innerHTML = b;
        }
    </script>
  
</body>
  
</html>

Output: 

After clicking the button:

Supported Browsers: The browser supported by Navigator appName Property are listed below:


Article Tags :