August 1999
Intermediate to advanced
1488 pages
72h 53m
English
navigator.appVersion
The appVersion property of the navigator object is used to get the browser version. The returned property contains the browser version, platform on which the browser is running, and the country (either international or domestic).
Listing 7.398 shows an example of how the appVersion property is used.
<html> <head> <title> Example of the appVersion property of the navigator object</title> </head> <body> <script language="JavaScript"> <!--Hide // output the appVersion property document.write(navigator.appVersion); // End Hide ---> </script> </body> </html> |
Read now
Unlock full access