Recent Questions
Q: Is there a way to have the sub menus open to the left instead of the right?
A: You should set the following parameter:
var smViewType=2;
Q: I am able to open the page but the 'x' which allows me to close the popup dhtml is missing.
A: Try to set this parameter:
closable:1,
Q: How do you center the text within the top-level menu cels in the menu java script?
There doesn't seem to be a setting for it in the tuner. There's a justification option for the sub-menus, but not for the top.
A: Use the following parameter to specify align for the top items:
var itemAlignTop="center";
Q: I have to pass dynamic value from the link when the user click the mouseover menu.
A: Actually you can use your own Javascript code instead standard links. For example:
var menuItems = [
["text", "javascript:your_code_here"]
];
or
var menuitems = [
["<div onClick='your_code_here'>item text</div>", ""]
];