Recent Questions
Q: Will tab titles ever automatically wrap?
Is there a way to force a wrap of a tab title in a tab menu java?
 
A: No, unfortunately, tab menu cannot wrap item text automatically.
But you can use 
 tag within item text, for example 
  var bmenuItems = [ 
 ["Item 1 text <br> text text text <br> text text text ","", "", "", "", "", "", "", "", ], 
 ["Item 2","", "", "", "", "", "", "", "", ], 
 ["Item 3","", "", "", "", "", "", "", "", ], 
];
Q: I bought your product Deluxe Menu. 
 I wanted to ask you for this problem:
 I'd like to put on my home page two java menu examples, one in the right side and one in the left side. I tried to create two java menu examples and put them in the home page with the command PHP include, but the menus don't work correctly. I think the menus search for the same javascript function and so there are problems. How can I solve this kind of problem?
A:  You can use as many java menu examples as you want on the same page.
But notice that you should call dmWorkPath parameter and dmenu.js fileon the page only once.
Q: it's possible to use on every Item the OnMouseOver / OnMouseOut event?
move the mouse over a Menu !!!!!!
 
A: Each menu items can include any html code. 
So, you can include your own objects with onmouseover event, forexample: 
  var menuItems = [ 
 ["<div OnMouseOver='yourFunc()'>item text</div>"], 
 ["<div OnMouseOut='yourFunc()'>item text</div>"], 
]; 
Where yourFunc() is Javascript function.
Q: Could you please help me with coding of the submenu box in your java script dropdown menu?
I hope you can see images I've included in this email.
I want to put a large block of text in the submenu. 
Now I can do it like the code shown here and it wraps and works OK. 
["Text display","", "", "", "", "", "0", "0", "", ], 
  ["|Text Line 1 Text Line 1Text Line 1Text Line 1<br>text Line 2text Line 2text Line 2text Line 2<br>Text line 3Text line 3Text line 3Text line 3<br>text line 4text line 4text line 4text line 4text line 4", "", "", "", "", "", "", "0"],
]; 
The problem is that if I want a large amount of text, the line of code with text in it will be 10 miles long. Please note the line of code above isn't broken in practice. The email wraps it. 
Is there any way to break the code into lines instead of one very long line?
For example: 
["Text display","", "", "", "", "", "0", "0", "", ], 
  ["|Text Line 1 Text Line 1Text Line 1Text Line 1<br>
Line 2text Line 2text Line 2text Line 2<br>
Text line 3Text line 3Text line 3Text line 3<br>
text line 4text line 4text line 4text line 4text line 4", "", "", "", "", "", "", "0"],
]; 
No matter what way I try It won't work
Is there a way?
A: The only way to do that is
 ["|Text Line 1 Text Line 1Text Line 1Text Line 1<br>"+
"Line 2text Line 2text Line 2text Line 2<br>"+
"Text line 3Text line 3Text line 3Text line 3<br>"+
"text line 4text line 4text line 4text line 4text line 4", "", "", "", "", "", "", "0"],
];