Hi There,
If you are talking about a window then you could use something like this.
in the body using onload you can call a function:
<BODY onload="MaxWindow ();" >
then in the head of the document you can place the javascript function itself:
<SCRIPT language="JavaScript">
function MaxWindow ()
{
window.resizeTo(screen.ava
window.moveTo(0,0);
}
</SCRIPT>
This will allow the window to maximise when opening. Hope this helps
Sean
Main Topics
Browse All Topics





by: asdaveyPosted on 2006-04-16 at 17:43:25ID: 16466408
Do you mean how do you get the browser to maxmize when someone visits your site?