window - resizeable
David Hörpel
- javascript
Hi!
Kann mir einer sagen, warum bei diesem Script
function fenster1()
{
var win;
win=window.open("test.htm","window", "width=760, height=420 , toolbar=no, location=no,status=no,scrollbars=no, resizeable=no");
}
trotz resizeable=no die Größe veränderbar ist bzw. wie ich das Problem beheben kann?
Gruß David!
win=window.open("test.htm","window", "width=760, height=420 , toolbar=no, location=no,status=no,scrollbars=no, resizeable=no");
weil das so geschrieben wird:
resizable= // ohne 'e'
Kevin
Hi!
Good afternoon.
Kann mir einer sagen, warum bei diesem Script
function fenster1()
{
var win;
win=window.open("test.htm","window", "width=760, height=420 , toolbar=no, location=no,status=no,scrollbars=no, resizeable=no");
}
trotz resizeable=no die Größe veränderbar ist bzw. wie ich das Problem beheben kann?
Thou shalt not put whitespace into thy third parameter of window.open.
Furthermore, it is resizable, not resizeable...
Greetings from Stratford upon Avon,
William