Omu
Omu

Reputation: 71218

how to get mozilla like firebug console in chrome?

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

Answers (5)

Isidro Moran
Isidro Moran

Reputation: 330

If you want a Firebug experience within chrome for the console, use Firebug Lite extension for Chrome.

Upvotes: 0

GeeksCook
GeeksCook

Reputation: 81

Yea u can have it. Enable it from the setting of chrome console.

  1. Press ctrl + shift + I
  2. click on setting (Gear) icon at the bottom right.
  3. check "Log XMLHttpRequests" at the console section part.

Thats it.

Upvotes: 7

duffymo
duffymo

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

darioo
darioo

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

DNRN
DNRN

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

Related Questions