|
Is there a way to set a parameter such that when a css rollover menu Item is CLICKED...
Return to Recent Questions
Q:
Is there a way to establish a setting h that when a css rollover menu Item is clicked, the
color of that css rollover menu Item STAYS darker. Such as when you hover over the menu items, the background
color of that css rollover menu item changes (it becomes darker).
It helps help the user know which category of the website they are visiting now.
A:
The css rollover menu has only two states normal and mouseover.
Try to do the following things:
- delete var pressedItem=1; parameter from your data file
- set correct parameter on each page before you call data file, for
example:
<noscript><a href="http://dhtml-menu.com">css rollover menu by DHTML-Menu.com</a></noscript>
<script type="text/javascript">var dmWorkPath = "menudir/";</script>
<script type="text/javascript" src="menudir/dmenu.js"></script>
<script type="text/javascript">var pressedItem=3;</script>
...
<script type="text/javascript" src="menudir/data.js"></script>
You can also 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:
- March 15, 2009 - How can I disable items in drop down dhtml menu?
- March 16, 2009 - How can I change item width in the Vista templates in the dhtml menu samples?
- March 31, 2009 - Is there any way can we display submenu items on mouse over in menus css?
- Apr 30, 2009 - For some reason all of the right click pop up menu items are squished together...
- Jun 05, 2009 - I have certain dhtml menu creator items that I won't to disable at certain times. Is it possible?
- Aug 13, 2009 - Why the background images disappear after hovering over drop down menu java script items?
- Aug 21, 2009 - How to display my top menus in java script items without a border, but my sub items all have a border?
- Sep 04, 2009 - How to use javascript calls when the link is clicked in the horizontal menu bar?
- Sep 23, 2009 - I can't seem to figure out how to keep last clicked item in my menu dynamique horizontal marked.
- Oct 04, 2009 - Is there a way to capture which popup menu code item was clicked
- Oct 22, 2009 - Is there a way to set a menu item to pressed when a page is reloaded?
|