When using Google Chrome, I want to debug some javascript. How can I do that?
|
|
Windows: CTRL-SHIFT-J Mac: ALT-⌘-J Also available through the wrench menu (Tools > JavaScript Console):
|
|||||||||||||||||||
|
|
Not sure about this, but have you tried adding this to your source:
Works in most, if not all browsers. Just place it somewhere in your code, and it will act like a breakpoint. |
|||||||||||||||||
|
|
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. |
|||||
|
|
In Chrome 8.0.552 on a Mac, you can find this under View/Developer/JavaScript Console ... or you can use ALT+CMD+J |
|||
|
|
|
Here you can find the shortcuts to access the developer tools http://code.google.com/intl/de-DE/chrome/devtools/docs/shortcuts.html |
|||
|
|
|
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 |
|||||
|
|
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. |
|||
|
|
|
Shift+Control+I opens the Developer tool window. From bottom-left second image (that looks like |
|||
|
|

this) will open/hide the console for you.