|
Is it possible set a pressed item when you have multiple mouse button menu on the page?
Return to Recent Questions
Q:
Is it possible set a menu item to pressed when a page is loaded
when you have multiple mouse button menu on the page?
I have 2 menus side by side and I was able to set the pressed
item with the JavaScript API as described in your FAQs but when I
try to show an item as pressed in a second menu on the same page,
the corresponding item in the first menu shows as pressed. Is there
a different function that I can use for this or a way to reset the
menu ID in the second menu to start from where the first menu left
off so I can use the same function?
A:
See the first parameter in
dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
function is index of the menu.
So, if you use several menus on the one page you should use different
menuInd parameter.
For example you have:
<script type="text/javascript" src="menu/data1.js"></script> //menuInd=0
...
<script type="text/javascript" src="menu/data2.js"></script> //menuInd=1
...
<script type="text/javascript" src="menu/data3.js"></script> //menuInd=2
...
<script type="text/javascript" src="menu/data4.js"></script> //menuInd=3
So, for the second mouse button menu you should write:
dm_ext_setPressedItem (1, 2, 5)
Return to Recent Questions
Related:
- March 17, 2007 - Can the web menus items be set so they are all the same width?
- Apr 01, 2007 - How can I set different parameters for diferent items in my horizontal dropdown menu?
- May 15, 2007 - We want to set a specific width for each top level item in the html javascript menu
- Jun 28, 2007 - Does your javascript menu over allows to keep the pressed menu-item hightlighed?
- Jul 12, 2007 - Is it possible to set target attribute individually for the pull down menu javascript items?
- Oct 12, 2007 - The using drop down menus opens a new window although I haven't set item's target...
- Oct 13, 2007 - How easy would it be to set up these css vertical menus items?
- Oct 22, 2007 - Is there a way to set a menu item to pressed when a page is reloaded?
- Oct 29, 2007 - How can your popup menu be set to open menu items by click?
- Dec 12, 2007 - The menus using java script opens a new window although I haven't set item's target...
- Dec 24, 2007 - I want to set the exact width for each menu item in javascript dynamic menu
|