Recent Questions
Q: How do you center the text within the top-level cels in the drop down navigation bar?
A: You should set the following parameter:
var itemAlignTop="center";
Q: I wanna open link in new window after click link in java script menu
how can make it ?
A: You should set the following parameter:
var itemTarget="_blank";
Q: I'm using the deluxe-tree.
On the top of the tree there is a title. When i click onthe title the whole menu collapse. How can i disable this option ?
I want to keep the collapse option for the css menu tree when i click on the collapse button but not when i click on the title.
A: Try to set the following parameter:
var texpandItemClick=0;
Q: How can we add a css horizontal dropdown menu separator? I’ve tried the following code but it only adds a menu item with the text “|-“ which is unselectable.
dm_ext_addItem(0, 1, ["|-"])
A: You should add separator without "|" symbol:
dm_ext_addItem(0, 1, ["-"], 1);