Forum Moderators: phranque
Attempt number one was useing a javascript statement to resize the window to fullscreen(true fullscreen without access to the address bar or any means of escape). It seems this command does not exist.
Attempt number two was to use an
onLoad="window.open('win.html','name','fullscreen')"
comand in conjunction with a self.close() command to open the new window and close the current. This proved slightly annoying because the window will prompt you because the it is trying to close itself.
Attempt number three and focus of my post is to use a js function to open the new window and focus and it instead of the current. It looks like this:
<html>
<head>
</head>
<script type="text/javascript" language="JavaScript">
<!--
function home() {
var index = window.open('indexh.html', 'index', 'fullscreen')
index.focus()
}
-->
</script>
<body bgcolor=black onLoad="home()">
</body>
</html>
Im new to webdesign and im sure there is some simple answer stareing me in the face.
Baxter
You may do better in the javascript forum.
[webmasterworld.com...]
Kaled.