Recent Questions
Q: I am a registered user, and I really like your menu system.
 With my old menu system the user could right click on a menu item and the browser would display an option to open the page in a "New Tab".
 Is there any way in the javascript menu html to allow the user to choose to open a link in a new tab?. 
 My users are restricted to using IE.
A:  You can try to write the following code for your items:
 ["<a href='index.html' target='_blank' class='home'>Home</a>","", "", "", "", "Return to Index page", "", "0", "", ],
And create styles
.home{
color: #FFFFFF;}
.home:hover{
color: #FFBEBE;}
Try that.
Q: I am thinking of purchasing your javascript menu creator. I have a question about a single use license. I have two computers my home desktop and my laptop that I travel with. Since I would be the only user would I be able to put a copy of javascript menu creator on each computer? 
A: You can install Deluxe Menus on unlimited number of computers.
With Single Website license your reg. key will work on the registereddomain only.
See more info:
http://deluxe-menu.com/single-website-license-purchase.html
Q: The menu has a problem with newlines. The menu builds correctly (layout ok) but when pressed on the button nothing happens 
 At some point, in the DHTML menu, we have the following in the javascript: 
   var menuitems = [ 
  ["|Print HTML","javascript:alert('HTML print: Only the 7 most recent orders on the screen \n will be printed because of space limitations on paper.');printResult('4'); ","","", ,"_parent",,] ] 
 As you can see we have a newline (\n) between the words "screen" and "will". But when we click on the button nothing happens. If we remove the newline and we click on the button then we first get the alert box. After pressing the OK button the function printResult is called. 
 Is there any way for us to still use the newline character in the menuItems variable? 
 This can be easily reproducible. That's why I haven't made an example. 
A:  Try to write in the following way \\n:
 ["|Print HTML","javascript:alert('HTML print: Only the 7 most recent orders on the screen \\n will be printed because of space limitations on paper.');printResult('4'); ","","", ,"_parent",,]
Q: Hello, I’ve set my menus up so that they are positioned on my page within a container div (not using the positioning built into the menu script). 
 I am also trying to use the autoscroll feature as some of the submenus are quite long. The autoscroll doesn’t seem to work with the css positioning though. 
 I also tried to size the submenus to force them small and thus to scroll with no luck. 
 The scrolling works fine when I pull the menus out of the container div and just place them in the flow of the page. 
 Am I doing something wrong or are these two features incompatible with each other. 
A: Unfortunately, it is really so. Submenu scrolling doesn't work with css. We'll try to fix it in the future versions. 
You can try to use multicolomn submenus. 
http://deluxe-menu.com/multicolumn-menu-sample.html