Reputation: 1106
I don't know what I've switched on (by accident) but every time I have the Inspect Element area open and then try to click anything on the webpage not within the Inspect Element area (especially something jQuery related like a slideshow for example) it greys the page, shows a message saying 'Paused in debugger' and then opens a jQuery file within the Sources section of Inspect Element.
Within the 'Call Stack' area, it shows a message saying 'Paused on a "click" Event Listener'.
I don't remember switching this feature on but I'm keen for it to be switched off.
I know this question has been asked before - I thought I'd found the answer when everyone suggested we look to see if the 'Pause' option is switched on (blue). However, it's not switched on, it's grey not blue or any other colour and when I hover over it, it says "Don't pause on exceptions. Click to Pause on all exceptions".
Upvotes: 38
Views: 82011
Reputation: 1
Your debugger is paused while you want to run your Flutter project. if any exceptions stop your project, and you still want to run the project, make sure to untick the Uncaught exceptions.
Upvotes: 0
Reputation: 31
For me what fixed it was to uncheck the "Pause on __ exceptions".
Note the yellow checked box on the right 'debugger' panel:
Upvotes: 3
Reputation: 87
For Visual Studio Users, just go Tools>Options>Debugging and make disabled it
Upvotes: 1
Reputation: 63
For me, I resolved it by temporarily disabling the Chrome Bitwarden extension.
You could check to see in the Sources
tab in the devtools panel to see what is causing this error, it could be an extension.
To open the devtools panel on Chrome, press the F12
key.
Upvotes: 0
Reputation: 4279
It did drive me nuts for a short while.....scroll all the way to the bottom of breakpoint window and you'll find XHR Breakpoints
& under it there is the Any XHR
checkbox...
Upvotes: 5
Reputation: 886
This can also cause the issue
Break Point icon at top left should be blue like this(For Deactivate BreakPoints)
Should not grey like this
Upvotes: 18
Reputation: 8202
One possible cause, it that you've enabled the "pause on exceptions" (the little stop-sign shaped icon with the pause (||) symbol with in in the lower left of the window). Try clicking that back to the off/grey state (not red nor blue states) and reload the page.
Upvotes: 0
Reputation: 12350
Found solution here, if the little octagonal stop/pause sign (at lower left of Chrome "Sources") is colored (blue or purple), you need to click on it until it's black again.
Upvotes: 12
Reputation: 646
You might also check the Source tab, check under the Event Listener Breakpoints panel if you've set any breakpoints under 'Mouse'.
Upvotes: 62
Reputation: 65785
Go to Elements tab and remove all breakpoints from right pane under DOM Breakpoints
Upvotes: 1