Recent Questions
Q: Are vertical menus also supported, because I don't see any in the javascript menu examples?
A: Yes, you can create vertical menu with Deluxe Menu. 
You should set this parameter: 
  var isHorizontal=0; 
 
See one of the javascript menu examples here: 
http://deluxe-menu.com/data-templates/win98-style-1-template-sample.html 
Q: I am using javascript dropdown menu - Deluxe Menu 2.0 and have some problem with the doctype declaration. 
Is there any need to classify a certain doctype in order to get the menu working correctly? 
If we use the XML declaration (like this:  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">) 
the padding and margin settings of the submenus get lost.
Are there any known solution to fix this?
A: Yes, it happens if you don't specify units in "px" for some dropdown menu parameters.
Please, try to write so:
  var itemPadding="2px"; 
Q: I want to use my own function within menuItems in the drop down menu button.
A: You can use Javascript instead standard links. For example: 
   var menuItems = [ 
 ["text", "javascript:launchWin('popups/popup_member_browser.cfm','css_MemberBrowser',600,720,0,0,0)"] 
 ];
Q: I’m currently testing your product and using the tabs.  My question is that not all my javascript html tabs point to the same target, I tried doing your suggestion on your FAQ but when I do that the tabs do not even display, here is my code 
    ["|Manage Users","user.asp",,,,,"fmeMain"] also tried different points in the parameters   
 I know the break down is as follows   
 [Display,Url,Icon1, icon2, title,supposedToBeTarget]
 
A:  See, you can use links if you have 
  var tabMode=1; 
only. 
If you have 
  var tabMode=0; 
You should use the ID of the DIV. 
Unfortunately, you cannot set target parameter for each item. 
bmenuItems has the following structure: 
   var bmenuItems = [ 
 ["text", "divID or link or javascript function", "icon1", "icon2", "icon3", "tip", "styleN"], 
 ]; 
But you can try to open your pages using different targets in thefollowing way 
["tab text", "javascript: window.open('test.html', 'frameName')", ...], 
["tab text", "javascript: window.open('test.html', '_self')", ...], 
["tab text", "javascript: window.open('test.html', '_blank')", ...], 
Where frameName - the name of the frame where to open the page test.html. 
Using this method you can create Deluxe Tabs in  var tabMode=0; and   var tabMode=1;