Question
#include
when jsx file is included in another script file, is it possible to find out by what file its included without passing parameters?
lets say I have 2 files:
lib.jsx
--
function libFunc(){
var main=???
$.writeln("I am oncluded in"+main);
};
libFunc();
~eof
main.jsx:
#include lib.jsx
~eof
