You are here: irt.org | FAQ | JavaScript | Redirect | Q249 [ previous next ]
Try something like this:
<SCRIPT LANGUAGE="JavaScript"><!--
if (navigator.appName == 'Netscape')
location.href = 'netscape.html';
else {
if (navigator.appName == 'Microsoft Internet Explorer')
location.href = 'explorer.html';
else if (navigator.appName == '*')
location.href = 'other.html';
}
//--></SCRIPT>