|
Here is a quick and easy way to detect wich browser one is using,
and redirect based on browser type.
<script>
<!--
var n=navigator.appName
var ie=(n=="Microsoft Internet Explorer")
var ns=(n=="Netscape")
if (ie)
location="default.html"
else if (ns)
location="default.html"
//-->
</script>
Make sure you place this script within the <HEAD> </HEAD>
tags of your web document and that you place the URL to the files
to which you wish to redirect your audience in location="default.html",
like so: location="place_your_URL_here.html".
See
it in action
|