Javascript examples for Browser Object Model:Navigator
The appVersion property returns the version information of the browser.
This property is read-only.
A String, representing the version information of the browser
The following code shows how to get the version of your browser:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/*from w ww .ja va 2 s. c o m*/ var x = "Version info: " + navigator.appVersion; document.getElementById("demo").innerHTML = x; } </script> </body> </html>