I have a Font Detect code that does not work in Google Chrome, and I thought I would find out what is going on. But I still can't figure out how I can add breakpoints or do watch etc. I am looking for something like FireBug. I assume I would need to install a third party debugger?

link|improve this question

1  
Please see: How to print debug messages in the Google Chrome Javascript Console. Helped me. – TMB Sep 28 '11 at 6:24
feedback

6 Answers

up vote 19 down vote accepted

The debugger is different than most because the functionality is driven from it's Command Line.

Eric Pascarello has a pretty good intro to it here -- http://www.pascarello.com/lessons/browsers/ChromeDebugHelp.html

link|improve this answer
6  
I think that page is obsolete? None of those commands work for me in the latest version of Chrome (8.0). – mhenry1384 Feb 1 '11 at 19:21
1  
I also found these commands did not work. (Chrome 11) – ddc0660 May 26 '11 at 16:02
2  
That page WAS useful, but I found that they no longer work on Chrome 10, Chrome 11 etc. However the links in this response by @mhenry1384 stackoverflow.com/questions/45965/… DO work and are up-to-date as of July 2011. – Feral Oink Jul 10 '11 at 21:47
feedback

You must use the Javascript Debugger available in the menu on the right of the Omnibar. Just find the item called something like "Tools foir developpers" Then type "help" in the Debugger to have the options and add breakpoints in your code.

link|improve this answer
feedback

You can try to read these tutorials or watch this video

link|improve this answer
:) just missed the date – loislo Dec 6 '10 at 4:21
feedback

ctrl+shift+J

link|improve this answer
feedback

I don't know Chrome, so I might be totally mistaken here. But I though its developer tools were based on WebKit? If so, then I expect them to work the same as in Safari. And for Safari no command line things are needed?

(See Using the Scripts Pane at Apple's Developer Connection.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.