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.
_______________________________________________
Project_owners mailing list
[email protected]
https://www.mozdev.org/mailman/listinfo/project_owners
