Can we specify our own onclick event handler for the javascript sliding menus item?
Return to Recent Questions
Q:
I'm trying to evaluate the possiblity of using your menu in our
product. Can we specify our own onclick event handler for the menu
item?
A:
You're able to use Javascript for each item, for example:
var menuitems = [
["item text", "javascript:your_code_here"]
];
Unfortunately, you can't assign onmouseover/onClick event to each item.
However, you can achieve this by using standard html objects within
items, for example:
var menuitems = [
["<div onClick='your_code_here'>item text</div>", "index.html"]
];
Return to Recent Questions
|