Is it possible to set drop down menus in javascript up so the javascript function runs when clicking a tab?
Return to Recent Questions
Q:
Have a question regarding your DHTML-Tabs drop down menus in javascript.
Is it possible to set drop down menus in javascript up so the javascript function runs when clicking a tab?
A:
You can use your own javascript functions and html code inside the drop down menus in javascript items.
Unfortunately, you can't assign onMouseover / onClick event to each item.
However, you can achieve this by using standard html objects within
drop down menus in javascript items, for example:
var bmenuitems = [
["<div onMouseover='your_code_here'>item text</div>", "content1"]
];
Return to Recent Questions
|