
August 10th, 1999, 04:53 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
You can resize a window with self.resizeTo(), however it has some weird effects. We used it on a sample site sometime back and it tends to get the window "stuck" to the size and place it has been resized to. This can be very annoying for users. Anyway, here's an example using onload.
<html>
<head>
<script language="JavaScript">
<!--
function sizeMe() {
self.resizeTo(640,480);
}
// -->
</script>
<body onLoad="sizeMe()">
blah blah...
Cheers,
adam
|