Recent Questions
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 this something I can adjust ...or make submenus were you can't see through them?
A: Try to set the following parameter:
var transparency=100;
Q: The submenu pop is appearing above the menu instead of the bottom again even though I have set the following parameter var subMenuVAlign="bottom";
A: Use new engine files and set the following parameter:
var subMenuVAlign="top";
Q: How can I make the 'hand' icon appear when someone moves their mouse over an item in the javascript menu open?
A: You should set the following parameter:
var itemCursor="pointer";