Can I force a page to maximize?? Plz Help :-)

liunx

Guest
I have made up a page of 20 thumbnails & would like them maximize when clicked on. I have made the picture fit perfectly into a maximized 1024x768 res window. Can I had script to my source code to force the window to maximize when clicked on? Heres 1 of the 20 lines I have for the pictures :<br />
<br />
<A HREF=http://www.htmlforums.com/archive/index.php/"wed19.jpg"target="new"><IMG SRC="sm_wed19.jpg" WIDTH="43" HEIGHT="60" BORDER="0"></A><br />
<br />
If this is possible what would I have to put into this line to make it work.<br />
<br />
Mabs <br />
:-)<!--content-->that would be impossible if the users resolution is not set for that.<!--content-->Originally posted by scoutt <br />
that would be impossible if the users resolution is not set for that. <br />
<br />
Hi Scoutt,<br />
<br />
Thx for replying to my post :-)<br />
<br />
I understand that I can't force a users resolution to 1024x768 but can I force the window to maximize whatever resolution it maybe. I can suggest on the page it is best viewed at 1024x768. Any further help would be much appreciated.<br />
<br />
Mabs<br />
:-)<!--content-->that you can do.<br />
<br />
<br />
<head> <br />
<Script Language="JavaScript"> <br />
top.window.moveTO(0,0) <br />
top.window.resizeTo(screen.availWidth,screen.availHeight); <br />
</Script> <br />
</head><!--content-->or try this...<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"#" onClick="win = window.open('http://www.yahoo.com', 'dep','fullscreen=yes', 'height=1,width=1', hotkeys='no');">Yahoo In Fullscreen</a><!--content-->the only problem with fullscreen Doc, is that it covers the startbar and everything else. plus I don't think that works in Netscape. so my way is the best for cross-browser.<!--content-->
 
Back
Top