Is there some chance to use calling of JScript function from javascript hide menu?
Return to Recent Questions
Q:
Is there some chance to use calling of JScript function from Item of deluxe menu?
Something about:
var menuItems = [
["Calling alert","alert ('Hello');", "icon_win98_1.gif", , , , , , , ]
];
A:
Thanks for your interest in our products.
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(...)", ...]
];
Return to Recent Questions
|