Browser Entry
Posted: Fri Dec 24, 2004 7:47 am
If you maintain a different page for Internet Explorer and another for Netscape browsers, you should use this script. Quite simply, it sends the right browser to the right browser optimised page.
<!-- ONE STEP TO INSTALL BROWSER-SPECIFIC ENTRY:
1. Paste the coding into the BODY of your HTML **** -->
<body>
<script language="JavaScript" type='text/javascript'>
<!-- Begin
var name = navigator.appName
if (name == "Microsoft Internet Explorer")
url=("http://www.8sky.info/ie.html");
else
url=("http://www.8sky.info/netscape.html")
window.location=url
// End -->
</script>
</body>
<!-- ONE STEP TO INSTALL BROWSER-SPECIFIC ENTRY:
1. Paste the coding into the BODY of your HTML **** -->
<body>
<script language="JavaScript" type='text/javascript'>
<!-- Begin
var name = navigator.appName
if (name == "Microsoft Internet Explorer")
url=("http://www.8sky.info/ie.html");
else
url=("http://www.8sky.info/netscape.html")
window.location=url
// End -->
</script>
</body>