Can someone tell me how I can get a call trace between different javascripts?
Suppose I have an html page that loads some javascript files, which in turn may load other javascript files from the server. Is there a way that I can trace which js page is loaded from what other js pages?
I've used google chrome speed tracer extension, and can get the event trace of the browser, normally javascript evaluation events were registered, but not all of the registered events have the attribute specifying what other script triggered the evaluation.
I've also used firebug, but it seems it's more useful in debugging javascripts instead of what I want.
Thanks.