is there anyway to get the HV Menu 5.5 to display window.status messages when you mouseover menu items with window.status in them
-----------------------------------
current code is (item: menu2)::::::::::::::::::::::::
[CODE]
/***********************************************************************************
* (c) Ger Versluis 2000 version 5.411 24 December 2001 (updated Jan 31st, 2003 by Dynamic Drive for Opera7)
* For info write to menus@burmees.nl *
* You may remove all comments for faster loading *
***********************************************************************************/
function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}
// Menu tree
Menu2=new Array("<span style='cursor
ointer; cursor:hand;' onmouseover=window.status='HOME';><b>HOME</b></span>","","",5,18);//header
Menu2_1=new Array("<span style='cursor
ointer; cursor:hand;'><b>OUR MISSION</b></span>","http://www.sc.maricopa.edu/boomerz/mission.htm","",0,20,95);
this does not display the window.status message, and if I do it this way:::::
Code:
Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover='window.status='HOME';'><b>HOME</b></span>","","",5,18);//header
it doesnt work, nor does it work with
Code:
Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover="window.status='HOME';"><b>HOME</b></span>","","",5,18);//header
because it just kills the menu, so could the window.status message be held in or above the
Code:
function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}
section of the page as a variable, or maybe a function?
Bookmarks