No way.....but you can control the resizing IF and when you open the window
from Javascript:

w = window.open("index.html","start",features);
where features contains: "resizable=no"

otherwise you must code on "onresize" event handler with some javascript in
the static html:

<script>
function retainit() {
 window.location.href = window.location.href ;
}
</script>
<body onresize="retainit();">


> -----Original Message-----
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Lorena Carlo
> Sent: Saturday, November 11, 2000 3:45 PM
> To: [EMAIL PROTECTED]
> Subject: (off topic)javascript: How can I disable the maximize button in
> NS and IE
>
>
> Hello everybody
>
> Can somebody tell me how can I disable the maximize button of the
> tittle bar
> in both NS an IE.
>
> Thanks a lot in advance
>
> Lorena
>
> ==================================================================
> =========
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to