Forum Moderators: open
But now where do you position the window? Where are the users toolbars? None of this is available to js. I would suggest rethinking what you're doing rather than opening the window over top of or underneath toolbars etc.
Just my personal experience. I have the windows task bar on top of the screen. I've yet to see a window like this that does'nt open underneath it. The windows task bar is just the tip of the iceberg. People use toolbars of all types all over the screen.
Here is full-screen for netscape:
<script language="JavaScript"><!--
window.open('page.html','newwin','fullscreen');
//--></script>
for ie:
<script language="JavaScript"><!--
w=800
h=600
if (window.screen) {
w = window.screen.availWidth;
h = window.screen.availHeight;
}
window.open('page.html','newwin','width='+w+',height='+h+',top=0,left=0');
//--></script>
Crow, you said this wasn't the effect you're looking for. In what way? Were you not using IE? Or even in IE, is this not what you mean by "maximized"?
Tedster: By maximized window I meant taking the whole workspace.... just like when you click on that icon next to to the X on the top right of every window... the fullscreen=yes option is just like pressing F11 in IE... it masks the windows taskbar...and doesn't have the ie toolbar... so its really as fullscreen as you can get! better be quick on that alt-f4 combo if the page showing is not the clever ;)
but thanks for you help guys, but I worked my way around.
Reality is that which, when you stop believing in it, doesn't go away