Click to See Complete Forum and Search --> : Fixed size on open a web page


svenna
09-12-2003, 08:28 AM
Hallo all,
I am trying to make my home page open in a fixed size, regardless of what the users have set their browser to.
The page should open in the same size whether it is accessed from a link, a favourite list, some search engine etc.

Hope some have a solution

Thanks

requestcode
09-12-2003, 08:39 AM
How about something like this:
<html>
<head>
<title>Resize test</title>

<script language="JavaScript">
function noresize()
{
window.resizeTo(600,400)
}
window.onload=noresize()
</script>
</head>
<body>
<center>
<br><br><br><br>
<h2>Resize</h2>
</center>
</body>
</html>

svenna
09-12-2003, 08:46 AM
Thanks a lot :)
The code works excellent

Svenna