Jo H
Jo H

Reputation: 1106

Chrome 'paused in debugger' issue

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

Answers (11)

Ibrar hashmi
Ibrar hashmi

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.

Picture is here

Upvotes: 0

Theo Bueno
Theo Bueno

Reputation: 31

For me what fixed it was to uncheck the "Pause on __ exceptions".

Note the yellow checked box on the right 'debugger' panel:

Note the yellow checked box on the right 'debugger' panel

Upvotes: 3

ahmetsokmen
ahmetsokmen

Reputation: 87

For Visual Studio Users, just go Tools>Options>Debugging and make disabled it

Upvotes: 1

Sam Haj
Sam Haj

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

Jadeye
Jadeye

Reputation: 4279

It did drive me nuts for a short while.....scroll all the way to the bottomenter image description here of breakpoint window and you'll find XHR Breakpoints & under it there is the Any XHR checkbox...

Upvotes: 5

Asif Asghar
Asif Asghar

Reputation: 886

This can also cause the issue

Break Point icon at top left should be blue like this(For Deactivate BreakPoints)

enter image description here

Should not grey like this

enter image description here

Upvotes: 18

Ajey
Ajey

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

HaoQi Li
HaoQi Li

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

Koray Güclü
Koray Güclü

Reputation: 2898

Goto the sources tab and check all breakpoints.

Upvotes: 2

Tim S.
Tim S.

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

Mohsen
Mohsen

Reputation: 65785

Go to Elements tab and remove all breakpoints from right pane under DOM Breakpoints

Upvotes: 1

Related Questions