|
Is it possible set a pressed item when you have multiple css list menus 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 css list menus 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 css list menus you should write:
dm_ext_setPressedItem (1, 2, 5)
Return to Recent Questions
Related:
- March 17, 2009 - Can the menu vertical items be set so they are all the same width?
- Apr 01, 2009 - How can I set different parameters for diferent items in my web navigation buttons?
- May 15, 2009 - We want to set a specific width for each top level item in the down menu in javascript
- Jun 28, 2009 - Does your down vertical menu allows to keep the pressed menu-item hightlighed?
- Jul 12, 2009 - Is it possible to set target attribute individually for the menus and navigation items?
- Oct 12, 2009 - The html horizontal bar opens a new window although I haven't set item's target...
- Oct 13, 2009 - How easy would it be to set up these vertical menu javascript items?
- Oct 22, 2009 - Is there a way to set a menu item to pressed when a page is reloaded?
- Oct 29, 2009 - How can your javascript menu dropdown be set to open menu items by click?
- Dec 12, 2009 - The website navigation buttons opens a new window although I haven't set item's target...
- Dec 24, 2009 - I want to set the exact width for each menu item in script drop down menu
|