|
Is there a way to leave a main navigation item highlighted in the drop down menus javascript?
Return to Recent Questions
Q:
Hi, I was wondering if there is a way to leave a main navigation
item of the drop down menus javascript highlighted when in that section. For example if I clicked on
"Contact Us" and when I am on the contact us page, the "Contact us"
navigation would still be highlighted. I appreciate any help you
might have, thanks!
A:
The drop down menus javascript has only two states normal and mouseover. We'll try to add the pressed state in the future.
You can set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
Sets a current pressed item.
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
itemInd - index of an item, >=0.
recursion = true/false - highlight parent items.
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem.
You can't get this ID after you reload your page. That is why you should write your own code on PHP.
Return to Recent Questions
Related:
- Apr 15, 2009 - My mainmenu items are not links. So I need no link cursor for these drop down dhtml menu items.
- Apr 30, 2009 - Do you have a transparent drop down menu that allows the sub-items to 'slide' out from the main items?
- Jul 24, 2009 - Is there a way to keep global vertical slide menu item highlighted?
- Sep 15, 2009 - Is it possible to keep the main javascript menu navigation highlighted corresponding to the page you are in?
- Oct 15, 2009 - How I can make the current javascript menus item to be highlighted?
- Oct 16, 2009 - We want the hyperlink works fine for main items in html vertical menu
- Oct 25, 2009 - The first item of the javascript navigation menu stays highlighted when I load my page.
- Nov 12, 2009 - How do I highlight main simple drop down menu items when I selected a main category?
- Jan 27, 2010 - I don't need the generated text on the main context menu popup, only on the submenus
- May 3, 2010 - The first item of the web menu design stays highlighted.
|