Can't get menu links to open in new windows.

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
gazchap
Beginner
Beginner
Posts: 4
Joined: Mon Jul 24, 2006 11:31 am

Can't get menu links to open in new windows.

Post by gazchap »

If you look at http://www.source-web.co.uk/development/classic/ the "get a quote" link in the menu on the left is supposed to open in a popup.

The menu definition code for the item in question is:

Code: Select all

aI("text=get a quote;url=lightbox.php;target=lightbox;
targetfeatures=width=625,height=325,status,scrollbars,resizable;")
The whole menu definition code can be found at this URL.

Any ideas how I can get this working?
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

Hi,

You need to upgrade to the newest menu version 5.753, see if that fixes the problem.

SInce everything is working on the Milonic site for new windows, it is in your page.

I narrowed it to you css for the container div. When I removed position=relative the new window began working again.


Ruth
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

I forgot :oops:

Your aI string target features is incorrect. Get rid of the extra commas and add the =yes to the stuff you want.

Code: Select all

aI("text=get a quote;url=lightbox.php;target=_blank;targetfeatures=width=625 height=325 status=yes scrollbars=yes resizable=yes;")
Post Reply