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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I create a popup without the maximize,minimize and close?

Status
Not open for further replies.
Hi, try:

Code:
function OpenWind(){
windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no";

 reportWindow = window.open("somepage,"popupwindow",windowprops);
}

This produces a window that can only be closed and nothing else.

[profile]
 
It's really the close button (x) that I need to get rid of.

But thanks! :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top