NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started 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
-
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
-
I guess that is what I mean :)
-
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
-
Thanks Bruce,
It works like magic!