window Properties Object Properties Summary
Retrieves the navigator object.
HTML |
N/A |
Script |
[ oNavigator = ] window.clientInformation |
oNavigator |
navigator object that contains information about the browser. |
The property is read-only.
Generally, this property is used to obtain information about the browser, such as version and name, as well as whether certain features are enabled.
The following JavaScript example retrieves the appName of the browser and displays it in a message box.
alert ( window.clientInformation.appName )
The following JavaScript example checks whether Java applets can be run.
if ( window.clientInformation.javaEnabled ( ) == true )
// Java is enabled; applets can run.
window