You are here: irt.org | FAQ | JavaScript | Misc | Q835 [ previous next ]
Don't forget that there are more browsers than just Netscape Navigator and Microsoft Internet Explorer:
<SCRIPT LANGUAGE="JavaScript"><!--
if (navigator.appName == 'Microsoft Internet Explorer')
location.href = 'explorer.htm';
else if (navigator.appName == 'Netscape')
location.href = 'netscape.htm';
else
location.href = 'other.htm';
//--></SCRIPT>