Browser Detection and Redirection Script
ShareUse this script to redirect Internet Explorer users to a different location on your site or to a another site all together.
Simply replace “URL of the redirection page” with a URL of your choice.
<script language=’Javascript’ type=’text/Javascript’>
if ((navigator.appName==”Microsoft Internet Explorer”) || (navigator.appName==”Netscape”))
{
if (navigator.appName==”Microsoft Internet Explorer”)
window.location = “URL of the redirection page”;
else window.location = “URL [...]
