Can we set the link of a java menu item to a javascript method?
Return to Recent Questions
Q:
Can we set the link of a java menu item to a javascript method?
A:
You can use your own javascript functions in the menu items.
You should paste "javascript:some_function()" into item's link field, for example:
var menuItems = [
["text", "javascript:your_function(...)", ...]
];
var menuItems = [
["item text", "javascript:alert('Hello World')", , , , ,]
];
Return to Recent Questions
|