Ban IE From Your Site


If you don't like IE, then don't let IE visit your site! You can use a simple JavaScript to ban people using IE from your site.
Here is an example. If you are using IE, you will get the message "Please use Netscape." If you are using Netscape, then you will go to my JavaScript page.
Click here for JavaScripts!

How do you do it? Like this:
<SCRIPT>
function verify()
{
if (navigator . appName != "Netscape")
   alert("Please use Netscape.");
else
   open ("script.html");
}
</SCRIPT>