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

Unclosable window

Status
Not open for further replies.

NegreteO

Programmer
Apr 23, 2003
54
US
HI

How could I open a new page using window.open and get a page without the cross button that helps to close the internet window and alos without the minimize button

Thanks
Oscar
 
This is designed to be a clickable link that opens the URL in a new window.
Code:
<a href="projects.htm" target="Console" onclick="if (window.open) {Console=window.open(this.href,this.target,'toolbar=no,location=yes,directories=yes,status=yes,menubar=no,scrollbars=no,resizable=no,width=400,height=300'); return false;}">Projects</a>


I hope you find this post helpful. Please let me know if it was.

Regards,

Mark
 
See thread329-898414 for other comments on the subject. When you use the Windows environment, it really enforces a minimum feature set.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top