JavaScript  -  Web Browser Version

Option 1.   Save this script in the <head> of your html document

<script type="text/javascript">
var navAppver1 = navigator.appVersion;
</script>

and use this script in the <body>

<script type="text/javascript">
<!--
document.write(""+navAppver1+"");
//-->
</script>

Web Browser Version - Displays:

 

Option 2.   Save this script in your js folder

Save the following script as version.js

<!--
var navAppver2 = navigator.appVersion;
document.write(""+navAppver2+"");
// or
// document.write(""+navigator.appVersion+"");
// without variable
//-->

and refer to it in the <body> of your html document

<script src="/js/version.js" type="text/javascript"></script>

Web Browser Version - Displays:

 

Option 3.   Embed this script in the <body> of your html document

<script type="text/javascript">
<!--
var navAppver3 = navigator.appVersion;
document.write(""+navAppver3+"");
// or
// document.write(""+navigator.appVersion+"");
// without variable
//-->
</script>

Web Browser Version - Displays:

 

A web browser is a software application for retrieving, presenting, and traversing information resources on the World Wide Web. An information resource is identified by a Uniform Resource Identifier (URI) and may be a web page, image, video, or other piece of content. Hyperlinks present in resources enable users easily to navigate their browsers to related resources. A web browser can also be defined as an application software or program designed to enable users to access, retrieve and view documents and other resources on the Internet. Although browsers are primarily intended to access the World Wide Web, they can also be used to access information provided by web servers in private networks or files in file systems. The major web browsers are Firefox, Google Chrome, Internet Explorer, Opera, and Safari.