I am working on a project that has over 40 ajax webservice calls. I want add a few debugging options to my project. One of which is a timing method. I have already created my Timer class/object in Javascript.
I need help determining which ajax function is current running. I have implemented the .ajaxStart and .ajaxStop listeners and would like to retrieve information pertaining to the current ajax call within these function.
Is there a way to perhaps access the requested url or anything to help identify which ajax call is running?
You can use a prefilter to access the native ajax object which would give much better debug info.