The NavigatorID interface contains methods and properties related the identity of the browser.
The NavigatorID interface contains methods and properties related the identity of the browser.
(app-code-name this)
Property.
[Read Only]
The value of the NavigatorID.appCodeName property is always "Mozilla", any browser. This property is kept only for compatibility purposes.
codeName = window.navigator.appCodeName
See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/appCodeName
Property. [Read Only] The value of the NavigatorID.appCodeName property is always \"Mozilla\", any browser. This property is kept only for compatibility purposes. `codeName = window.navigator.appCodeName` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/appCodeName`
(app-name this)
Property.
[Read Only]
The value of the NavigatorID.appName property is always "Netscape", any browser.
appName = window.navigator.appName
See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/appName
Property. [Read Only] The value of the NavigatorID.appName property is always \"Netscape\", any browser. `appName = window.navigator.appName` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/appName`
(app-version this)
Property.
[Read Only]
Returns either "4.0" or a string representing version information the browser.
window.navigator.appVersion
See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/appVersion
Property. [Read Only] Returns either \"4.0\" or a string representing version information the browser. `window.navigator.appVersion` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/appVersion`
(platform this)
Property.
[Read Only]
Returns a string representing the platform of the browser. The allows browsers to always return the empty string, so don't rely this property to get a reliable answer.
platform = navigator.platform
See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/platform
Property. [Read Only] Returns a string representing the platform of the browser. The allows browsers to always return the empty string, so don't rely this property to get a reliable answer. `platform = navigator.platform` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/platform`
(product this)
Property.
[Read Only]
The value of the NavigatorID.product property is always "Gecko", any browser.
productName = window.navigator.product
See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/product
Property. [Read Only] The value of the NavigatorID.product property is always \"Gecko\", any browser. `productName = window.navigator.product` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/product`
(taint-enabled this)
Method.
[Deprecated]
The NavigatorID.taintEnabled() method always returns false.
result = window.navigator.taintEnabled()
See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/taintEnabled
Method. [Deprecated] The NavigatorID.taintEnabled() method always returns false. `result = window.navigator.taintEnabled()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/taintEnabled`
(user-agent this)
Property.
[Read Only]
The NavigatorID.userAgent read-only property returns the user string for the current browser.
var ua = window.navigator.userAgent;
See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/userAgent
Property. [Read Only] The NavigatorID.userAgent read-only property returns the user string for the current browser. `var ua = window.navigator.userAgent;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorID/userAgent`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close