[Project_owners] Is it possible to..

Jesper Staun Hansen jesper at selvet.dk
Mon Feb 25 09:28:17 PST 2008


Is it possible to have one function in one file call a function in 
another js file?:


in caller.js:
=======
function init() {
    IcallYou("world");
}
init();


in responder.js:
=======
function IcallYou(callWhat) {
    dump("Hello "+callWhat+"\n");
}



I remember I had trouble doing this last I did this.



More information about the Project_owners mailing list