|
|
In the rollover menus, how can I have a heading link to and open another website's home page?
Return to Recent Questions
Q:
I want to activate script pop up by a hyperlink.
A:
Drop down menu items is an array of arrays. It has the following structure:
var menuItems = [
[text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
[text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
...
];
where target is target for an item link.
Available values: _self, _blank, _parent, _search, _top.
So you can set the target value _blank for the items you need.
For example:
var menuItems = [
["Home","testlink.html", "", "", "", "", "", "", "", "", "", ],
["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "", "", "", "", "", "", ],
["|Features","http://deluxe-menu.com", "", "", "", "_blank", "", "", "", "", "", ],
["|Installation","", "", "", "", "", "", "", "", "", "", ],
["|Dynamic Functions","testlink.html", "", "", "", "_blank", "", "", "", "", "", ],
["Purchase","http://deluxe-menu.com/order-purchase.html", "", "", "", "", "", "", "", "", "", ],
["Contact Us","testlink.htm", "", "", "", "", "", "", "", "", "", ],
];
More info you can find here:
http://deluxe-menu.com/menu-items-info.html
Return to Recent Questions
Related:
- Sep 22, 2006 - Where do I add my "blahblah.htm" page links in js menu?
- Sep 30, 2006 - How can I open the link in a new window with your DHTML MENU?
- Oct 20, 2006 - I want that tree menus expanded or collapsed and go to the link...
- Nov 05, 2006 - With the new version of javascript rollover menus, my body onload function is blocked.
- Nov 10, 2006 - I want to set the status bar messages to another than the link text from the xp menu items?
- Nov 29, 2006 - I am still struggling with multiple menus js on one page.
- Dec 15, 2006 - I can't see floating menubar on my test page only direct links...
- Dec 16, 2006 - I would like to use these cool menus in a page containing two iFrames.
- Dec 17, 2006 - Some page visitors couldn�t see the javascript rollover menu.
- Dec 26, 2006 - I'm trying to have two separate mouseover menus on my web page.
- Dec 29, 2006 - How can I open sliding drop down menu on simple link mouse over?
|