Hallo ihr Nachteulen!
maximilian = window.open();
maximilian.resizeTo(screen.availWidth, screen.availHeight);
maximilian.moveTo(0,0);
Beobachtung unter IE:
maximilian = window.open("","","width=200,height=600");
erzeugt ein Fenster ohne Locationbar (Navigationsleiste).
Die Angabe "locationbar=yes"
maximilian = window.open("","","width=200,height=600,locationbar=yes");
wird von IE nicht ausgeführt. Das Fenster wird wieder ohne Navigationsleiste dargestellt.
Notiere ich
maximilian = window.open();
maximilian.resizeTo(200,600);
dann ist die Navigationsleiste wieder da...
sonnenaufgehende Grüße
Philip