Pacerier
Pacerier

Reputation: 89783

web console in chrome?

In Firefox, there is a Web Console accessible through Ctrl Shift K.

The Firefox Web Console can show us stuff like:

[15:06:32.190] GET asd.com [HTTP/1.1 304 Not Modified 330ms]

Is there a similar Web Console in Chrome?

Upvotes: 1

Views: 7012

Answers (2)

neolaser
neolaser

Reputation: 6907

The Chrome console (SHIFT-CTRL - I) does show stuff like that. There is also a Chrome extension to get firebug in Chrome (its a light version)

when you press SHIFT CTRL I click on the console tab and thats where it will be shown. You might need to right click and check the "XMLHttpRequest Loggin" to view all logs

Upvotes: 2

Jeroen Baert
Jeroen Baert

Reputation: 1314

SHIFT - CTRL - I

SHIFT - CTRL - J

Shows you the developer tools and the javascript console, respectively.

Upvotes: 3

Related Questions