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.