Sorter
Sorter

Reputation: 10220

Show only json calls in network tab

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

Answers (3)

Felix
Felix

Reputation: 4595

You may also filter by Content-Type/mime-type: mime-type:application/json Filter by Content-Type/mime-type

See Sorting and filtering and Network Filters

Upvotes: 14

Sachin Jain
Sachin Jain

Reputation: 21842

I think you want to use this highlighted option to view only XHR requests.

Upvotes: 0

MDiesel
MDiesel

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

Related Questions