Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why some Ajax calls are not visible in the console tab of firebug?

The last application I worked on, I was able to see the Ajax calls inside the console tab of "firebug" and clearly see the requests and responses and do some debugging.

This new application that I'm working on makes a lot of use of Ajax; however, the calls are not displayed in the console tab. My Ajax datatype is JSON.

Is this something related to the application? And what do you recommend to use for debugging when working with Ajax.

Thanks

like image 348
farjam Avatar asked Feb 18 '13 17:02

farjam


1 Answers

JSONP requests are only seen under the NET tab.

like image 60
farjam Avatar answered Nov 16 '22 20:11

farjam