|
Is it possible that your tree menu in javascript call some javascript on mouseover?
Return to Recent Questions
Q:
Is it possible to have your tree menu in javascript call one of my functions on mouseover?
I need to change some text on the screen based on the highlighted tree menu in javascript item.
A:
You can add any html code within each tree menu in javascript items.
So, you can add your own objects with onmouseover event, for
example:
var menuItems = [
["<div onmouseover='yourFunc()'>item text</div>"]
];
Where yourFunc() is your own Javascript function.
Return to Recent Questions
Related:
- March 12, 2009 - I don't understand, how can change place of the icon in button context menu...
- March 13, 2009 - Now we are having the "Incorrect Copyright" on our pulldown menus...
- March 15, 2009 - I have problems with transitional effects in Firefox in the menu rollover...
- March 19, 2009 - How to get the html drop down menus to highlight and stay on the page you're viewing?
- March 20, 2009 - Links don't work in the drop down horizontal menu. How can I correct this?
- March 21, 2009 - How can we increase the width of the vista style buttons of javascript disable button?
- March 24, 2009 - In javascript onmouseover creator there's no option for turning the cursor into a hand.
- March 27, 2009 - I cannot select another font type in menu dinamico html...
- March 29, 2009 - How could I call a script instead of specifying a link in css navigation menu myspace?
- March 31, 2009 - Is there any way can we display submenu items on mouse over in vertical menu javascript?
- Apr 04, 2009 - I now have the need to introduce separators on the drop down menu generator.
|