in reply to How can I open a new browser window to a given size?
--------
Assuming you are loading a document into the window:
JavaScript *sigh* in an onLoad="blah()" function for the page to set the size...
The method used to resize the Window in Internet Explorer is as such:
<script>
self.resizeTo(500,400);
</script>
For Netscape:
<script>
window.outerHeight = 500;
window.outerWidth = 400;
</script>
Just some 2 cents. I'm cheap.
----Dave----
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Answer: How can I open a new browser window to a given size?
by zentara (Cardinal) on Apr 10, 2004 at 15:42 UTC |