Dirk: Browserweiche ...komme nicht klar

Beitrag lesen

Danke, das werde ich mal probieren ....
Im Moment habe ich eine Startseite programmiert:

<!-- Browserweiche -->
<script LANGUAGE="JavaScript">
app = navigator.appName
if (app == 'Netscape'){
 parent.location="Netscape.html"
}
else if (app == 'Microsoft Internet Explorer'){
 parent.location="IExplorer.html"
}
else {
 parent.location="opera.html"
}
</script>

Klappt auch - aber deine Lösung scheint mir eleganter

Dirk