jQuery.ajax() log the HTTP request jQuery.ajax() log the HTTP request ajax ajax

jQuery.ajax() log the HTTP request


Look for the tab "Network" (not the Console tab) on your Developer Tools (Ctrl+Shift+J) if you are using Chorme, or anythig similar if you are using another browser.

Even after that, if you want to log the XHtmlRequest, you can always do (if your browser supports console.log):

var xhr = $.ajax(...);console.log(xhr);

Hope I've helped.