Is it possible that your menu call some javascript onmouseover event?
Return to Recent Questions
Q:
Is it possible to have your menu mouseover call one of my functions?
I need to change some text on the screen based on which menu item
is highlighted.
A:
Each menu items can include any html code.
So, you can include your own objects with onmouseover event, for
example:
var menuItems = [
["<div onmouseover='yourFunc()'>item text</div>"]
];
Where yourFunc() is Javascript function.
Return to Recent Questions
|