Browser Name

For some JavaScripts, that Netscape Navigator can use but Internet Explorer can not, and some of them only IE can use and Netscape can not, and if you force them to use the script, sometimes a error message will occur.  One way to avoid the error is to know the Browser Name of the user's browser, and then avoid to use the JavaScripts that won't work on the browser.

This script is so easy that I can just explain to you how to do that.

<SCRIPT>
<!--
document.write(navigator.appName)
//-->
</SCRIPT>
And then everything is set up for you.  If you don't know what I am saying, then see an example below.
 
<HTML>
<BODY>
Your browser is
<SCRIPT>
<!--
document.write(navigator.appName)
//-->
</SCRIPT>.
</BODY>
</HTML>
See? Just use this script at where you want the browser to appear, here is the example above after you put it in HTML.

Your browser is 

If you want it to show the version also, please check out the Browser Version script.

IMPORTANT: The scripts provided in this page are free as long as you keep the credits in the code.  E-mail me or use Script Rebuild Service for additional help about Cut N Paste or to ask for a script that is just for you.

Post Your Script Home