I've got a heirarchical menu loading into a main frame from a nav frame. The nav frame call the arrays of links from an outside .js file as follows:
<P><onMouseOver="popUp('HM_Menu3',event)" onMouseOut="popDown('HM_Menu3')" onClick="return false">Link Name</A></P><br><br>
and the outside js file looks like this:
HM_Array3 = [
[120, // menu width
80, // left_position
70, // top_position
"black", // font_color
"yellow", // mouseover_font_color
"yellow", // background_color
"black", // mouseover_background_color
"black", // border_color
"black", // separator_color
0, // top_is_permanent
0, // top_is_horizontal
0, // tree_is_horizontal
1, // position_under
1, // top_more_images_visible
1, // tree_more_images_visible
"null", // evaluate_upon_tree_show
"null", // evaluate_upon_tree_hide
], //right-to-left
["Dining Out","",1,0,1],
["Entertainment & Arts","],
["Late Night","]
]
HM_Array3_1 = [
[],
["Chinese","],
["Delivery","],
["Diner","],
["French","],
["Italian","],
["Japanese","],
]
I can't figure out where to target the href into the main frame, as opposed to the nav bar frame. - Any feedback?
<P><onMouseOver="popUp('HM_Menu3',event)" onMouseOut="popDown('HM_Menu3')" onClick="return false">Link Name</A></P><br><br>
and the outside js file looks like this:
HM_Array3 = [
[120, // menu width
80, // left_position
70, // top_position
"black", // font_color
"yellow", // mouseover_font_color
"yellow", // background_color
"black", // mouseover_background_color
"black", // border_color
"black", // separator_color
0, // top_is_permanent
0, // top_is_horizontal
0, // tree_is_horizontal
1, // position_under
1, // top_more_images_visible
1, // tree_more_images_visible
"null", // evaluate_upon_tree_show
"null", // evaluate_upon_tree_hide
], //right-to-left
["Dining Out","",1,0,1],
["Entertainment & Arts","],
["Late Night","]
]
HM_Array3_1 = [
[],
["Chinese","],
["Delivery","],
["Diner","],
["French","],
["Italian","],
["Japanese","],
]
I can't figure out where to target the href into the main frame, as opposed to the nav bar frame. - Any feedback?