Click to See Complete Forum and Search --> : Force to Maximum Width & Height ??


Asch
07-09-2003, 04:53 AM
Hi, I have a page that can t be resized by the user and what I want is that, when it opens it takes the maximum width & height from the screen (no fullscreen)??

i tried some stuff with onload="self.resizeTo(maxwidht,maxheight);"

but it does not seem that maxwidth &maxheight are valid commmands :O)...

Someone knows about it ???


many thx

asch
:D

SlankenOgen
07-09-2003, 08:25 AM
var wt = screen.availWidth;
var ht = screen.availHeight;

window.resizeTo(wt, ht);

Asch
07-10-2003, 05:36 AM
sweet ...many thx....


asch
:D :D ;)