Recent Questions
Q: The value of dmAJAXCount = 0 (we don't set that parameter). 
 How exactly does this parameter work? When does it have to be set? 
A:  That variable set the maximal number of submenus that will be loadedfrom server on your page. 
If you don't know exact number of submenus you can set a big value forthis parameter. 
Q: One more query, can we remove the following line from all the pages, 
 <noscript><a href=http://deluxe-menu.com/>Javascript Menu byDeluxe-Menu.com</a></noscript> 
 <script type="text/javascript">  var dmWorkPath = "/";</script> 
 As the script <noscript> tags are used in body section of webpage and when we use this in Head tag, it is creating a problem for us. Will removing this line would cause some problem in working of menu, as now a days every browser in the world supports JavaScripts. 
A: You cannot delete the following line:
 <script type="text/javascript">  var dmWorkPath = "/";</script> 
Your menu won't work without this line. 
You can try to move the following code in the <body> tag. Try that.
 
... 
<!-- Deluxe Menu --> 
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
<script type="text/javascript">  var dmWorkPath = "menudir/";</script> 
<script type="text/javascript" src="menudir/dmenu.js"></script> 
<!-- (c) 2006, http://deluxe-menu.com --> 
... 
<body> 
Q: Is there a way we can add javascript behaviors to the sliding dhtml menu actions?
 For example, is there a way we can add an onClick function to a menu item
 (eg,onClick="return MyFunction( )" ) so that we can catch and process key events? 
A: Unfortunately, you can't assign onmouseover/onClick/onContextMenu event to each item.
 However, you can achieve this by using standard html objects within items, for example:
   var menuitems = [
 ["item text
", ""]
 ];
 You can use your own Javascript code instead standard links. For example:
   var menuItems = [
 ["text", "javascript:your_code_here"]
 ];
 Try that.Q: I have set up the dhtml menu javascript at this site. I have chosen to use the transitional filter from IE6. The main menus and sub menus work fine in IE but in Firefox the sub menus do not appear at all. Is their a fix for this. I realize that firefox does not support IE transitions but Ithought the sub menus would appear when the main item is clicked on. that hs not happened. Go to above URL and vie in both IE and Firefox and you will see what I mean.
A: You couldn't see submenus in FF because you had 
  var transparency=""; 
You should set your parameters in the following way: 
  var transparency="100"; 
  var itemBackColor=["#072450",""];