|
Is there a way to set a menu item to pressed when a page is reloaded?
Return to Recent Questions
Q:
Is there a way to set a menu item to pressed in right click popup menu when a page is reloaded.
A:
The right click popup 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">right click popup 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 17, 2009 - Can the menu dhtml items be set so they are all the same width?
- March 31, 2009 - Is there any way can we display submenu items on mouse over in menus css?
- Apr 01, 2009 - How can I set different parameters for diferent items in my dhtml sliding menu?
- Apr 03, 2009 - I would like to change the height of the submenu items in the css drop down menus...
- Apr 04, 2009 - Is there a way to have an automatic line-break for large submenu items in javascript image menu?
- Apr 06, 2009 - Can the link items NOT open a new window in the popup menu?
- Apr 07, 2009 - I want to get my text within a single drop down menus item to be on a two lines...
- Apr 09, 2009 - Can I set pointer that tells path to all down css menu files?
- Apr 11, 2009 - I cannot see the shadow on the top items in my css horizontal menus example.
|