How to call the function in my java script menu?
Return to Recent Questions
Q:
I have written my own javascripts function.
How to call the function in my java script menu?
A:
You should paste "javascript:some_function()" into item's link field,
for example:
var tmenuItems = [
["text", "javascript:window.print(...)", ...]
];
Return to Recent Questions
|