<SCRIPT LANGUAGE="JavaScript")
if (navigator.appName == "Netscape")
{
document.write(' ????? ')
}
else
{
if (navigator.appName == "Microsoft Intenet Explorer")
{
document.write(' ???? ')
}
}
//--></SCRIPT>
Die Lösung ist eigentlich scon ok... aber du köntes dass doch so machen:
<SCRIPT LANGUAGE="JavaScript")
if (navigator.appName == "Netscape")
{
//nicht so »» »» document.write(' ????? ')
window.location.href="ncseite.html"
}
else
{
if (navigator.appName == "Microsoft Intenet Explorer")
{
//nicht so »» »» document.write(' ???? ')
window.location.href="ieseite.html"
}
}
//--></SCRIPT>