Recent Questions
Q: I would like to use it in a page containing two iFrames.
The iFrame called "nav" is where the menu will appear and the iFrame called "main" is where I want any sub-menu items to appear.
How can this be done given there are no "frameset" tags in this type of structure?
A: Deluxe Menu doesn't work with <IFrame> objects.
It works with<frameset> objects only. All it can to do with <IFrame> is to loadpages into it.
You should use standard installation for the menu.
Q: Can the Deluxe Menus be set to open by click and stay open when clicked for some time?
A: You can open Deluxe Menu on click. Set this parameter:
var showByClick = 0;          Show submenus on a mouse click only.
0 - disabled (default),   1 - enabled.
You can use such parameter in you menu:
var transDuration = 300;         - Delay of a transitional effect (in ms) on submenu's showing.
Q: It all works great under IE, but when you view it in Firefox the fly-out menus (off of Products, Services & About Us) do not appear over the Flash animation to the right in IE.
It works fine under Firefox on all other pages apart form Home, because Home is the only page with containing the Flash animation.
Could you please have a look and let us know if this is a known issue (we're using the latest 8 dmenu .js file, time-stamped 11 April 2006).
Thanks in anticipation.
A: Please, try to set this parameter:
var dmObjectsCheck=1;
Q: I have function "confirmLogout()" that it returns true or false. If it is false, the function does not make nothing. If it's true, I need to direct for the page "goout.jsp". How to use this function in the mouseover drop menu?
function confirmLogout() {
if(confirm('It really desires to leave? ?')) {
return true;
} else {
return false;
}
}
A: Actually you can use your own Javascript code instead standard mouseover drop menu links. For example:
var menuItems = [
["text", "javascript:your_code_here"]
];
or
var menuitems = [
["<div onClick='your_code_here'>item text</div>", ""]
];