Click to See Complete Forum and Search --> : how to make an html file appear in fullscreen


Metalhead
06-05-2004, 07:45 AM
is there a simple way to make an html file appear in fullscreen??
i want to make a cd browser and i think it would be better that way.

Microbyte
06-05-2004, 08:22 AM
think this is what your after mate

<script language="JavaScript">
<!--
window.open ("http://blahblahblah", "","fullscreen=yes")
-->
</script>

only drawback is that u gotta alt-F4 to get out of it. hope this helps.

Rob

davidbrent
06-05-2004, 08:39 AM
Unless of course you use a page close button or link.

Heres a sample:

<form>
<input type=button value="Close Window" onClick="javascript:window.close();">
</form>

or

<a href="javascript:window.close();">Close Window</a>

Hope that helps!

Best Wishes,
David

Aronya1
06-05-2004, 04:05 PM
<blahblahblan> 13% </blahblahblah>

Metalhead
06-09-2004, 07:34 AM
well all these helped and thanks but there is a little problem...
the page loads in fullscreen but it loads many times..
is there a way to make it load only once?
am i doing anything wrong??