The submenu goes away and the dhtml menu generator is not highlighted
Return to Recent Questions
Q:
With dhtml menu generator, I'm trying to dynamically set
the bselectedItem parm, using php. If I set bselectedItem to anything other
than 0, the submenu goes away and the main html tab javascript is not highlighted. If I set
to 0, everything works.
A:
See, if you use Tab Mode
var tabMode = 1;
var bselectedItem = 0; //main items
var bselectedSmItem = -1; //submenus
So you should set:
var bselectedItem = 0; //main items (0;7;14;21;25)
var bselectedSmItem = -1; //submenus (1;2;3;4;5....)
Return to Recent Questions
|