Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Window.open

Status
Not open for further replies.

greyone

Programmer
Dec 14, 2000
200
CA
hi guys
i want to maximize the new window which i'm creating using the window.open methid. Is it poosible to do this. I know that there is an option to set the height and width which will not work on different screen resolutions. I want the users to see the new window maximised irrespective of the screen resolution.

Please help
 
try - fullscreen=yes.
b2 - benbiddington@surf4nix.com
 
or put this in the page you're calling

<script language=&quot;JavaScript&quot;>
self.resizeTo(screen.availWidth,screen.availHeight);self.moveTo(0,0);
</script>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top