Forum Moderators: phranque
i would like to have index.htm fixed sized window (like script: open new window or pop-up window) 700 x 500? is this possible?
i try with this in index.htm:
i put onLoad="NewWindow('menu.htm'....
and window.close action with timer set to 0,5 second.
and i get: ... do you want to close window? question.
is there a way to disable this?
You need to place the content of the index.htm within a div or a table that you can control the width of. So you would have something like:
<body>
<table width="700">
<tr>
<td>
<!--- your existing content here -->
</td>
</tr>
</table>
</body>
Now it looks lovely.
Maybe it looks lovely to you, but I would think very carefully about what lorax wrote:
IMHO using javascript to dynamically resize the window is a bit disconcerting to most users.
I would certainly immediately leave a site that changed my browser and never, ever return to it.