Since menu control show ugly/distracting link info in the status bar, have easily hooked a simple js function to hide the status of all static menu items of a menu control using page_load:
leftMenu.Attributes(
"onMouseover") = "javascript:return hidestatus();"
where the js function is the trivial:
function
hidestatus()
{
window.status="";
return true;
}
The problem is doing the same to dynamic (submenu) items. Don't seem to see a way to hook the mouseover behavior from the server side for dynamic menu items. Any ideas?