Reputation: 10220
I want only the json calls to be visible in the network panel.
Since a number of image and text calls are recorded, its hard to locate the ajax json response during debugging.
Is there a filter which can display all json request/response in the network tab only.
Upvotes: 8
Views: 4897
Reputation: 4595
You may also filter by Content-Type/mime-type: mime-type:application/json
See Sorting and filtering and Network Filters
Upvotes: 14
Reputation: 21842
I think you want to use this highlighted option to view only XHR
requests.
Upvotes: 0
Reputation: 2667
You can click on XHR to show your ajax calls, is that what you are looking for?
Go to the Network tab in the developer console, and then click XHR at the bottom to filter by this.
Upvotes: 3