Search found 1 match

by jetbird
Fri Oct 24, 2003 5:52 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Passing Parent Menu Variable to a Sub-Menu
Replies: 5
Views: 4000

Passing Parent Menu Variable to a Sub-Menu

Is it possible to pass a variable to a sub-menu from a parent menu.


.
.Parent Menu
.
aI("text=Parent Menu;showmenu=ChildMenu;onfunction=setM(1);");
.
.
.


.
.Child Menu
.
aI("text=Child Menu;url=http://www.hello.com/?"+mVal+";");
.
.
.


function setM(t){
mVal=t;
}



Is there any way of doing ...