Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New window without maximize button

Status
Not open for further replies.

yusti

Programmer
Sep 4, 2001
3
BE
How do I call a new window in javascript but in the bar above I don't want the user to be able to click the maximize button.
Here's my code:

<script language=&quot;JavaScript&quot;>
<!-- hide from non js-browsers
function showResults(){
var newWindow;
newWindow=open('results.asp','Result','scrollbars=&quot;no&quot;, resizable=&quot;no&quot;, menubar=&quot;no&quot;, width=580,height=400');
}
//-->
</script>

thx in advance,
V.
 
yeah, i'm curious too.. i'm all my ears (eyes? ;)

i remember i saw such code somewhere, but i wasn't in need of it, & now i can't find it :( Victor
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top