| 
      Return to Recent Questions Where can I give the body of the javascript method which I use in cool dhtml menu? 
 
 Q:
 Where can I give the body of the javascript method which I use in cool dhtml menu?
 
 
 A:
You can define functions after menuItems, before you call dm_init();
function.
 
 var menuItems = [
 ["text", "javascript:your_function(...)", ...]
 ];
 
 Where your_function(...):
 
 function your_function(...)
 {
 .....
 }
 
 
 
 
 
 Return to Recent Questions
 
 
 |