Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using Google Chrome, I want to debug some javascript. How can I do that?

share|improve this question
See How to open the JavaScript console in different browsers? at Webmasters.SE – Bergi Apr 15 at 1:00

10 Answers

up vote 172 down vote accepted

Windows: CTRL-SHIFT-J

Mac: ALT--J

Also available through the wrench menu (Tools > JavaScript Console):

JavaScript Console Menu

share|improve this answer
17  
I think the shortcut has since changed to CTRL-SHIFT-J. – Martijn Laarman Oct 12 '09 at 10:05
3  
or Cmd-Shift-J for Macs. God I love this <kbd> tag. Too bad I can't use it in comments. – Anurag May 19 '10 at 1:08
9  
The Mac shortcut seems to actually be Alt-Cmd-J on the latest Chrome build. – Mathew Byrne Feb 16 '11 at 1:37
25  
F12 is the simplest way – Juan Mendes Nov 17 '11 at 18:46
looking at this question makes me understand how much my javascript skills improved from novice levels to quite decent standards – Kamal Reddy Jun 5 at 8:43

Not sure about this, but have you tried adding this to your source:

debugger;

Works in most, if not all browsers. Just place it somewhere in your code, and it will act like a breakpoint.

share|improve this answer
where exactly? can you give more info on that? Thank you, – squadette Sep 15 '08 at 20:15
12  
you place the line inside your source code and it's the equivalent of a breakpoint. – Omer van Kloeten Sep 16 '08 at 5:12
+1 Thanks very much for that! – Leo Nov 2 '10 at 15:38
5  
This doesn't seem to work in Chrome... – JoeCool Nov 29 '11 at 19:33
2  
@JoeCool - is your developer tools window open? – Omer van Kloeten Dec 1 '11 at 19:50
show 8 more comments

Windows and Linux:

Ctrl + Shift + I keys to open Developer Tools

Ctrl + Shift + J to open Developer Tools and bring focus to the Console.

Ctrl + Shift + C to toggle Inspect Element mode.

Mac:

Command + + I keys to open Developer Tools

Command + + J to open Developer Tools and bring focus to the Console.

Command + + C to toggle Inspect Element mode.

Source

Other shortcuts

share|improve this answer
1  
On mac, the shorcut to toggle inspect element mode is shift ⌘ C (Shift - Command - C) – Roberto Barros Aug 5 '11 at 13:08

Ctrl+Shift+J Opens Developer Tools.

share|improve this answer

In Chrome 8.0.552 on a Mac, you can find this under View/Developer/JavaScript Console ... or you can use ALT+CMD+J

share|improve this answer

Here you can find the shortcuts to access the developer tools

http://code.google.com/intl/de-DE/chrome/devtools/docs/shortcuts.html

share|improve this answer

Press F12 Function key in chrome browser to launch Javascript debugger and then Click Scripts" Choose Javascript file on top and place the break point to debugger the javascript

share|improve this answer
3  
F12 does not seem to open the debugger on my Windows 7 system with Chrome 23.0.1246.0 dev-m. – astletron Aug 29 '12 at 15:48

You can also consider using Eclipse-based debugger for Chrome/V8. It is integrated in Eclipse IDE so you can edit and debug the same files. It also has live editing feature.

http://code.google.com/p/chromedevtools/

share|improve this answer

Shift+Control+I opens the Developer tool window. From bottom-left second image (that looks like show Console this) will open/hide the console for you.

share|improve this answer

from the console in chrome, you can do console.log(data_to_be_displayed)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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