Navigator appName Property
Example
Get the name of your browser:
var x = "Browser Name: " + navigator.appName;
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The appName property returns the name of the browser.
Note: This property is read-only.
Browser Support
Property | |||||
---|---|---|---|---|---|
appName | Yes | Yes | Yes | Yes | Yes |
Syntax
navigator.appName
Technical Details
Return Value: | A String, representing the name of the browser. The returned value varies from different browsers:
|
---|
More Examples
Example
A demonstration of all navigator properties in one example:
var txt = "";
txt += "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt += "<p>Browser Name: " + navigator.appName + "</p>";
txt += "<p>Browser Version: " + navigator.appVersion + "</p>";
txt += "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt += "<p>Browser Language: " + navigator.language + "</p>";
txt += "<p>Browser Online: " + navigator.onLine + "</p>";
txt += "<p>Platform: " + navigator.platform + "</p>";
txt += "<p>User-agent header: " + navigator.userAgent + "</p>";
Try it Yourself »
❮ Navigator Object