views:

29

answers:

1

Hi,

with any Firefox plugin (Firebug, whatever), how to see the route from a .js has been loaded?

Regards

Javi

+2  A: 

The TamperData Firefox plugin lets you see all the HTTP transactions. That would tell you the URL from which Javascript (and CSS and image, etc) files are loaded. The route taken by individual packets is not going to be available from any tool.

Pointy
The Web Inspector available from the Develop menu in Safari shows the path that each script was loaded from in the Scripts pane.
Mark Bessey