I would like the visited link in the expandable javascript menu stay highlighted
Return to Recent Questions
Q:
I am testing it on my website.
I have under the submenu 'Generalites" two links "Presentation" and
"Formulaires"
I would like when I click on what ever link on the expandable javascript menu that the visited link stay
in a different color and with a different background.
For exemple:
If I click on link Presentation then this link will become in a
different color and also its background.
Then If I click on Formulaire the prevous link is reset and the
Formulaire link appears in a differemt color and its backgroud.
How should I do it ?
A:
Deluxe Tree doesn't save a pressed
item as it saves a tree state. It works within 1 page only and if you
reload the page you should set a pressed item using Javascript API:
function dtreet_ext_setPressedItem (menuInd, itemID)
Please, see here:
http://deluxe-tree.com/functions-info.html
You can also set
var tsaveState = 1;
More info you can find
http://deluxe-tree.com/data-samples/tree-menuxp-save-state.htm
To expand specific items you should use API function
function dtreet_ext_expandItem (itemID, expand)
Return to Recent Questions
|