Xenton
2001-10-03, 22:18:56
Meine Hompage hat eine Weiterlaitung die Auflösungsabhängig ist in javascript.
So zu meinem Problem. Unter IE 4.0+ und NS 4.7 funktioniert das auch einwandfrei, aber unter NS 6.1 funktioniertes nicht. :(
Hier ein Auszug aus meiner Weiterleitung:
function Umleitung()
{
var FBreite = 0;
var FHoehe = 0;
if (document.all) {
FBreite = document.body.clientWidth;
FHoehe = document.body.clientHeight;
}
else if (document.layers) {
FBreite = window.innerWidth;
FHoehe = window.innerHeight;
}
if (FBreite < 800 && FHoehe < 550)
self.location.href = 'frie800.htm';
else if (FBreite < 1024 && FHoehe < 760)
self.location.href = 'frie1024.htm';
else
self.location.href = 'friehoch.htm';
}
Also was ist falsch? ???
Danke im Vorraus für Tips
So zu meinem Problem. Unter IE 4.0+ und NS 4.7 funktioniert das auch einwandfrei, aber unter NS 6.1 funktioniertes nicht. :(
Hier ein Auszug aus meiner Weiterleitung:
function Umleitung()
{
var FBreite = 0;
var FHoehe = 0;
if (document.all) {
FBreite = document.body.clientWidth;
FHoehe = document.body.clientHeight;
}
else if (document.layers) {
FBreite = window.innerWidth;
FHoehe = window.innerHeight;
}
if (FBreite < 800 && FHoehe < 550)
self.location.href = 'frie800.htm';
else if (FBreite < 1024 && FHoehe < 760)
self.location.href = 'frie1024.htm';
else
self.location.href = 'friehoch.htm';
}
Also was ist falsch? ???
Danke im Vorraus für Tips