[Javascript] fullscreen

Andrzej Wróblewski wroblewski at poczta.wprost.pl
Sun Nov 10 17:54:30 CST 2002


> How to resize current window to full screen (like F11 in IE)?

Hi, you can try this (I don't know if it is what you're looking for):

<head>
<script>
function openDocOnFullScreen() {
openDocOnFullScreen=window.open("./yoursDoc.html","displayWind
ow","fullscreen=yes");
}
</script>
</head>
<body>
<a href="javascript:openDocOnFullScreen()">some link</a>
</body>

Greetings
andrzej



More information about the Javascript mailing list