-
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 :)
-
Try this for starters:
Code:
<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>