Recent Questions
Q: I am currently tasked with creating a large intra-type net for our company. ( knowledge base, FAQ etc. for internal use only ). 
 At this time I am making plain text or table based menus and getting tired of having to add the drop menus to EVERY page individually in our little intra-web. I would like to purchase software that makes groovy looking menus, but also get the information needed to have them appear on ALL pages after editing the menu once if you know what I mean.
 Unfortunately my web authoring experience is best suited to circa-1996 web pages I can hash out in notepad in my sleep. However, I have been told in order to do what I am doing I need to use CSS or styles or cascading stylesheets and not sure if your software will do that. 
 If I purchase this software and whip up a neat little menu, would you be able to send me information on how to include it in a css as I described above? I would essentially need to know the code or commands to have it appear in all of the pages I create, once I make the menu file. If that is something you can assist me with, I can purchase this right away.
A: Deluxe Menu is Javascript code only. It requires several .js files andit's generated on a client side.
If you don't want to create your drop menus on each page, you can try to useframes, the menu has a cross-frame mode. Also you can use aserver-side script (php, asp, vb, etc.) to generate html pages fromtemplates on your server.
Q: How to set the icon vertically top when the menu in dhtml text is wrapped?
A:  Unfortunately it is not possible to align icon vertically now.
But you can do it using html code within menu in dhtml items, for example:
  var menuItems = [
 ["<img src='deluxe-menu.files/orangeDot.jpg' style='border: 0 none;'>  Home","testlink.html", "", "", "", "", "", "", "", "", "", ],
 ["<img src='deluxe-menu.files/orangeDot.jpg' style='border: 0 none;'>  Product Info hgdgfjh     aaaaaaaaa aaaaaaa     aaaaaaaaaaaaaaaaaaaaaaaaa     aaaa","", "", "", "", "", "", "", "", "", "", ],
Q: Is there a way to capture user click event just like the one in the javascript menu sliding?
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 = [
 ["<div onContextMenu='your_code_here'>item text</div>", ""]
 ];
Q: Is there a javascript function I can call to switch from one tab to the next in the javascript jump menu?
A: You can use the following function:
dtabs_itemClick(menuInd,itemInd);
menuInd - index of the javascript jump menu on your page (>= 0)
itemInd - index of the item you want to open (>= 0)