Is it possible to set breakpoints using the google chrome inspector on javascript code entered into jsfiddle.net?

When I go to the script tab of the developer tools I see lots of scripts but I don't know where my script would be found or if it can be found in there at all. In the past I have just settled for some console.log action but I would love to set some breakpoints.

(If not possible I am interested in other ways of inspecting javascript in this scenario.)

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

In the Developer Tools, under the Script tab if you select fiddle.jshell.net from the dropdown, around line 20-30 (depending on how much CSS you have) you will see a <script> tag that contains the code from the Javascript fiddle window. You can set your breakpoints here.

link|improve this answer
I have tried this, but the breakpoints aren't being run into whatever I do – Damon Aug 18 '11 at 17:47
feedback

Debugger calls work fine on jsfiddle. Just enter this line where you want to start debugging:

debugger;

Debugger is great for starting debug mode in chrome, firebug and even IE dev tools, but you usually need to have the debugger started (ie "start debugging" in IE, open firebug/developer tools).

link|improve this answer
best keyword ever!! – happytime harry Apr 13 '11 at 20:27
Simply Win. I'd definitely say this is the best debugger hook you've never heard of. – Terrance Dec 21 '11 at 16:42
feedback

Your Answer

 
or
required, but never shown

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