Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: Open new window without the title bar


Message #1 by Arjan Bosboom <Arjan.Bosboom@d...> on Wed, 26 Sep 2001 11:43:45 +0200
Without a TITLE-bar so, that's the blue thing on top of the page.. ;-)

I think it's not done with the default window.open tag but with something
different.. (But what??)

Greetz,

Arjan

-----Original Message-----
From: Baran, Greg [mailto:gbara@a...]
Sent: woensdag 26 september 2001 15:42
To: HTML Code Clinic
Subject: [html_code_clinic] RE: Open new window without the title bar


Try this:

	var width = 600;
	var height = 410;
	var x = (screen.width - width) / 2;
	var y = (screen.height - height) / 2;
	var logonPopupFeatures
="dependent=yes,toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=n
o,status=no,width=" + width + ",height=" + height + ",top=" + y + ",left=" +
x;
	var newURL = "http://something.com";
	var newWindow=window.open(newURL, "Email", logonPopupFeatures);


Greg

-----Original Message-----
From: Arjan Bosboom [mailto:Arjan.Bosboom@d...]
Sent: Wednesday, September 26, 2001 4:44 AM
To: HTML Code Clinic
Subject: [html_code_clinic] Open new window without the title bar


I want to open a new window from HTML without showing the title bar

does anyone know how to do this?

I saw it on a site once but I don't know which one...

Greetz,

Arjan Bosboom

  Return to Index