|
|
|
I can't highlight the selected css dynamic menus item of the current page.
Return to Recent Questions
Q:
I downloaded the trial version, so I'm doing some testing....
I can't highlight the selected css dynamic menus item of the
current page. The var ttoggleMode is enabled and
tpressedFontColor = "#AA0000";
This is caused by the trial version?
A:
Please, check the following parameter
var pressedItem=-2;
This parameter sets an index of an item that will be highlighted by default.
-2 - the toggle mode is disabled;
-1 - the toggle mode is enabled, bu t no items highlighted by default;
0,1,2,3,... - index of highlighted item in a top-menu.
The css dynamic menus has only two states normal and mouseover.
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.
You can also set the correct
var pressedItem=1;
parameter on each html page.
Return to Recent Questions
Related:
- Apr 11, 2009 - I cannot see the shadow on the top items in my css dropdown menu example.
- Jun 03, 2009 - Is it possible for the slide menu javascript to highlight selected item on the page?
- Jul 24, 2009 - Is there a way to keep global dynamic dropdown menu item highlighted?
- Oct 15, 2009 - How I can make the current javascript menu drop down item to be highlighted?
- Oct 25, 2009 - The first item of the dhtml pulldown menu stays highlighted when I load my page.
- Oct 28, 2009 - I want to highlight the selected menu item of the jump menu javascript.
- Nov 12, 2009 - How do I highlight main menu dinamico html items when I selected a main category?
- Dec 27, 2009 - I cannot see subitems of my popup menu html on the website. Could you help me?
- Jan 25, 2010 - How I can style all down navigation menu items to have font bold when selected?
- Jan 25, 2010 - Can a menu web design item that expands the submenu items when selected work as link?
- Feb 10, 2010 - When using the drop down menu template the third item seems to have a mind of its own..
|