open website in new window

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
LJC
Beginner
Beginner
Posts: 2
Joined: Thu Nov 18, 2004 5:55 pm

Post by LJC »

Ahh yes :roll:

Thxs John.
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

Not to worry. Happens to all of us... :D
John
Andy W
Beginner
Beginner
Posts: 2
Joined: Wed Nov 17, 2004 7:39 pm

Post by Andy W »

Hi,

target=_new or target=_blank do not work for me correctly in Netscape Navigator 4.8. The page appears, but it does not open in a new window. I have the same need (page in new window), but also require backwards compatability. (Using Milonic Version 5.52).

Yet, without Milonic, <a target=_blank href="[page URL]"></a> does open the page in a new window in NN 4.8

So what is the cross-browser safe Milonic solution?

Andy W
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

Got a URL, Andy W?
John
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

I am getting a new window when I try LJC's AD CHAT link in NN4.79, however, it's opening a new window with nothing in it, while loading the linked page in the original window. Weird.

Ruth
Andy W
Beginner
Beginner
Posts: 2
Joined: Wed Nov 17, 2004 7:39 pm

Post by Andy W »

We're revising a portion of our web site so have nothing in the public domain we can show right now.

Here's what did not work properly in NN 4.8:

aI("title=Test current app as it looks to responders;text=Test App;url=[our URL];target=_blank;");

nor did this:

aI("title=Test current app as it looks to responders;text=Test App;url=[our URL];target=_new;");



Here's how we got around the problem.

aI("title=Test current app as it looks to responders;text=Test App;url=javascript:Open_Wide_Window('[our URL]');");

where we implemented the Open_Wide_Window JS function as follows:

function Open_Wide_Window(URLName) {
window.open(URLName,"help","height=500,width=650,toolbar=yes,menubar=yes,resizable=yes,status=no,left=25,top=25,alwaysRaised=yes,scrollbars=yes")
}


Thanks. Would like to be able to use the target= command instead, but oh well.
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

I don't have a NS that old, but maybe Ruth can help out here. Don't see any problems with the code you posted.
John
Post Reply