Recent Questions
Q: Can title attributes be added to a javascript dynamic menu?
A: Yes you can add titles in javascript dynamic menu.
See menuItems parameter:
  var menuItems = [
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 ...
]; 
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "TITLE", "", "", "", "", "", "", ],
Q: I want that the font of an selected menupoint for the horizontal tree view is bold and red.
 What is the variable to define that?
A: Try to use the following parameter:
  var tpressedFontColor = "#AA0000"; 
 // Color of a text of selected items. Used when   var ttoggleMode = 1.
 Date: 10.21.2005
Q: I notice in your examples that your menus are horizontal and then drop down. 
Is it possible to configure dhtml menu generator for vertical menus with submenus going left to right? 
A: Yes, it is possible.
You should set the following parameter:
  var isHorizontal=0;
Q: I am evaluating your fine menu builder application. 
 Please let me know the following: 
 a) How could I call a script instead of specifying a link? 
  ["|Product A","http://dhtml-menu.com","","","",,"0",], 
 b) If the above is possible, please let me know how, in the called script, I could know where the call to the script come from.
 
A:  You can use your own javascript functions in the menu items. 
You should paste "javascript:some_function()" into item's link field, for example: 
  var menuItems = [ 
["text", "javascript:your_function(...)", ...] 
];