-
you cant,
but you can try this
Code:
<script language="javascript" type="text/javascript">
var defaultWidth = 300;
var defaultHeight = 300;
window.onresize = function (evt) {
if ((document.all && document.body.offsetWidth >= screen.availWidth)
|| (window.outerWidth && window.outerWidth >= screen.availWidth))
window.resizeTo(defaultWidth, defaultHeight);
}
</script>
Change defaultWidth and defaultHeight to the default amount
-
Or you can make the page a pop-up... then you can set paramaters like resizeable=0.
Michael
-
Your first mistake is assuming the browser is going to have a maximize button...
-
At PerlMonks they have this lovely voting system. Something like that would be nice here. Josh's response deserves ++ in a -- thread.