Recent Questions
Q: I place all of my files in folders.  If I want the Deluxe menu to work I have to have the Deluxe menu saved in each folder for it to work with the files inside those folders. 
 
A: There is no need to copy al files for the menu in each folder. 
To install the menu you can use such paths: 
<script type="text/javascript">  var dmWorkPath = "../menudir/";</script> 
<script type="text/javascript" src="../menudir/dmenu.js"></script> 
You can use additional parameters to make menu paths absolute: 
 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute. 
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
  var menuItems = [ 
 ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.
Q: How to work with menus and submenus in JSP?
 This e-mail message is only to be used by intended recipients and all others may kindly delete it and notify the sender. Unless expressly authorized by HPCL, the views expressed and the message itself is that of the individual sender and recipients are cautioned to check messages/ attachments for any viruses before use. Users acknowledge that messages may contain confidential, proprietary or privileged information and that HPCL neither assures nor guarantees integrity or content of messages.
 
A: Deluxe Menu is the Javascript product. It means that it works on aclient side only and it doesn't depend on the server which you'reusing and it doesn't work on a server side as JSP script. 
So, you can create the menu using standard html page and them movemenu code within .jsp page.
Q: I want to remove the "Loading...", message when using AJAX to load pull down menu nodes. This is because it does not fit in with my colour scheme and sometimes it stays there when no more nodes are loaded. 
A:  Open dmenu_ajax.js file in any text editor.
Find and delete the following words:
visibility="visible";
Q: I had test on php but I have problem with content "ABC-1" not show when run page first of the tab menu javascript, anh then I click it is show content.
A: Check parameter:
  var bselectedItem = 0;
Selected tab index by default. Index is an tab number in bmenuItems array.
It Must be > = 0;