Reputation: 545
I would like to interact with the page I am building with the console open. Unfortunately, if I trigger an event on my page the Dev Tools switches from "Console" to "Sources" and says "paused in debugger." It's driving me bananas. Is there a way to deactivate it?
Upvotes: 23
Views: 42914
Reputation: 46
To stop the debugger in Chrome, the circled icon should be deactivated (which will turn it grey colored):
Upvotes: 1
Reputation: 31181
Just press Ctrl + F8. Alternatively you can click the related button next to the buttons controlling the debugger.
This way the execution won't stop. It is especially useful when you try to inspect websites not under your control that left breakpoints (debugger
command) in the source code, that might have been done intentionally to prevent you from doing said inspection.
Upvotes: 20
Reputation: 492
You likely have a Breakpoint set on an Event. To remove it:
Upvotes: 9
Reputation: 86
Check your DOM, XHR and Event Listener breakpoints, and ensure they're unchecked/inactive.
Upvotes: 3