In Firefox, I use Firebug which allows me to view every http request my ajax calls are making. I\'ve switched over my development to Chrome and am liking it so far. My onl
Open up your DevTools and press F1 to access the settings. Look for the console section and check the checkbox for "Log XMLHttpRequests".
Now all of your ajax and other similar requests will be logged in the console.
I prefer this method because it usually allows me to see everything that I'm looking for in the console without having to go to the network tab.