Reputation: 3393
Is it possible to set breakpoints on code that was entered on chrome's or firebug's debug console?
Upvotes: 0
Views: 80
Reputation: 35274
sure! type this into console:
(function(){ debugger; alert(0); })();
Upvotes: 2