<head> of your html document
<script type="text/javascript">
var navV1 = navigator.userAgent.toLowerCase ();
var navVendor1 = navigator.vendor;
if (navV1.search ("msie") > -1) navVendor1 = "Microsoft Corporation";
if (navV1.search ("firefox") > -1) navVendor1 = "Mozilla Corporation";
if (navV1.search ("opera") > -1) navVendor1 = "Opera Software ASA";
if (navV1.search ("seamonkey") > -1) navVendor1 = "SeaMonkey Project / Mozilla Foundation";
else navVendor1 = navVendor1;
</script>
<body>
<script type="text/javascript">
<!--
document.write(""+navVendor1+"");
//-->
</script>
Web Browser Vendor - Displays:
Save the following script as vendor.js
<!--
var navV2 = navigator.userAgent.toLowerCase ();
var navVendor2 = navigator.vendor;
if (navV2.search ("msie") > -1) navVendor2 = "Microsoft Corporation";
if (navV2.search ("firefox") > -1) navVendor2 = "Mozilla Corporation";
if (navV2.search ("opera") > -1) navVendor2 = "Opera Software ASA";
if (navV2.search ("seamonkey") > -1) navVendor2 = "SeaMonkey Project / Mozilla Foundation";
else navVendor2 = navVendor2;
document.write(""+navVendor2+"");
//-->
<body> of your html document
<script src="/js/vendor.js" type="text/javascript"></script>
Web Browser Vendor - Displays:
<body> of your html document
<script type="text/javascript">
<!--
var navV3 = navigator.userAgent.toLowerCase ();
var navVendor3 = navigator.vendor;
if (navV3.search ("msie") > -1) navVendor3 = "Microsoft Corporation";
if (navV3.search ("firefox") > -1) navVendor3 = "Mozilla Corporation";
if (navV3.search ("opera") > -1) navVendor3 = "Opera Software ASA";
if (navV3.search ("seamonkey") > -1) navVendor3 = "SeaMonkey Project / Mozilla Foundation";
else navVendor3 = navVendor3;
document.write(""+navVendor3+"");
//-->
</script>
Web Browser Vendor - 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.