Reputation: 71218
the firebug console show each ajax request, and its parameters and the response,
is it possible to get this in chrome ?
Upvotes: 8
Views: 3774
Reputation: 330
If you want a Firebug experience within chrome for the console, use Firebug Lite extension for Chrome.
Upvotes: 0
Reputation: 81
Yea u can have it. Enable it from the setting of chrome console.
Thats it.
Upvotes: 7
Reputation: 308848
Chrome developer tools will give you that and a lot more. Click on the wrench and select Tools->Developer Tools.
I believe they were open sourced by Apple - great stuff.
Upvotes: 2
Reputation: 47183
Ctrl-Shift-I will open Chrome development tools. I assume this is what you wanted.
To see Ajax requests, click on "Network" and you'll see all network requests being made. By default you see them all, although you can filter them and just see Ajax requests. Take a look at bottom part of Network tab; you'll see "Documents", "Stylesheets", etc. You want "XHR".
Upvotes: 17
Reputation: 2489
It's there by default click on the tool icon and under tools, can you find developingtool, which is a chrome version of firebug :)
Upvotes: 1