NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: charl99 on February 09, 2009, 01:59:39 AM

Title: Open Window Maximized
Post by: charl99 on February 09, 2009, 01:59:39 AM
Is there a way to open a Window maximized or do the user have to maximize it himself?

Thanks
Charl
Title: Re: Open Window Maximized
Post by: Bruce on February 09, 2009, 02:07:50 AM
do you mean
"is there any way to maximize the browser that the site appears in when the user
browses to your site ?"

Cheers
Bruce
Title: Re: Open Window Maximized
Post by: charl99 on February 09, 2009, 02:23:48 AM
I guess that is what I mean :)
Title: Re: Open Window Maximized
Post by: Bruce on February 09, 2009, 02:38:06 AM
perhaps this'll work (I haven't tried it).

http://www.codelifter.com/main/tips/tip_018.shtml

----
Put the following script in the head of the page.  The window will reposition and resize to fill the full screen area.

<script language="JavaScript">

window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);

</script>
-------

Cheers
Bruce
Title: Re: Open Window Maximized
Post by: charl99 on February 09, 2009, 03:12:43 AM
Thanks Bruce,

It works like magic!