D
DaveG
Hi All
I am having a small problem with window.open() obviously something I am
or am not doing.
This is being fired from a subwindow. Everytime I use just the
location.href = "URL" I got a new window the same size as the subwindow
it was launched from.
The code below works in Mozilla by IE still opens a window the same
size as the subwindow
x = screen.width;
y = screen.height;
extWindow = window.open("http://www.stevengould.org/software/cleanup/",
"ext", "toolbar=no, resizable=yes");
extWindow.resizeTo(x, y);
extWindow.moveTo(0, 0);
All ideas will be helpfull
Thanks in advance
I am having a small problem with window.open() obviously something I am
or am not doing.
This is being fired from a subwindow. Everytime I use just the
location.href = "URL" I got a new window the same size as the subwindow
it was launched from.
The code below works in Mozilla by IE still opens a window the same
size as the subwindow
x = screen.width;
y = screen.height;
extWindow = window.open("http://www.stevengould.org/software/cleanup/",
"ext", "toolbar=no, resizable=yes");
extWindow.resizeTo(x, y);
extWindow.moveTo(0, 0);
All ideas will be helpfull
Thanks in advance