Is it possible to get a history of all past ajax calls from the browser?
If not, are there any ffx plugins or similar that will store all your ajax request in a similar way to the normal browser history?
Is it possible to get a history of all past ajax calls from the browser?
If not, are there any ffx plugins or similar that will store all your ajax request in a similar way to the normal browser history?
Hopefully not. This sounds remotely evil and tends to violate same origin policy. I mean, if this existed someone could, for instance, monitor all of a 3rd parties' activity on any web 2.0 site like gmail.
If this is for use within a single site, you want to have someone write a library that wraps the ajax calls and records a history and then get all the developers to use that instead of making ajax calls directly.
Maybe you want this Yahoo library as pointed out in this question.
I've used Firebug to debug a site that utilized ajax calls. So there is a ffx monitoring capability.
Fiddler 2 and firebug work great. I recommend firebug because you can debug the javascript making the calls as well.