class js.html.Navigator

Available on js

Returns a reference to the navigator object, which can be queried for information about the application running the script.

Documentation for this class was provided by MDN.

Instance Fields

var appCodeName:String

Returns the internal "code" name of the current browser. Do not rely on this property to return the correct value.

var appName:String

Returns the official name of the browser. Do not rely on this property to return the correct value.

var appVersion:String

Returns the version of the browser as a string. Do not rely on this property to return the correct value.

var cookieEnabled:Bool

Returns a boolean indicating whether cookies are enabled in the browser or not.

var language:String

Returns a string representing the language version of the browser.

var mimeTypes:DOMMimeTypeArray

Returns a list of the MIME types supported by the browser.

var onLine:Bool

Returns a boolean indicating whether the browser is working online.

var platform:String

Returns a string representing the platform of the browser.

var plugins:DOMPluginArray

Returns an array of the plugins installed in the browser.

var product:String

Returns the product name of the current browser. (e.g. "Gecko")

var productSub:String

Returns the build number of the current browser (e.g. "20060909")

var userAgent:String

Returns the user agent string for the current browser.

var vendor:String

Returns the vendor name of the current browser (e.g. "Netscape6")

var vendorSub:String

Returns the vendor version number (e.g. "6.1")

function javaEnabled():Bool