PDA

Click to See Complete Forum and Search --> : Full Screen.


Jeremy Martin
Jun 16th, 2000, 01:56 AM
Here is a question for you all. Does anyone have any idea on how to make a IE screen go to full screen mode when you enter a site. As if that wasn't enough. I would also like it to return to a normal size screen when the user leaves. Any examples in javascript or vbscript(prefered so it will be ignored by netscape) would be much appreciated.

Jeremy :)

Mark Sreeves
Jun 18th, 2000, 10:23 PM
Try this for starters:



<HTML>
<HEAD>
<script language="JavaScript"><!--
function DoIt()
{
if (document.all)
{
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);
}
}
//--></script>
</HEAD>
<BODY onLoad="DoIt()">


</BODY>

</HTML>