2
votes

When inspecting this site, the scripts are always paused in the debugger even if there are no break points set, and if the the pause is un-paused, it again pauses itself.

What can be done?

https://i.imgur.com/x22TTzx.png

2
Your screenshot doesn't show the code so I guess there's a debugger; statement somewhere. Usually you can right-click on that line and choose to never stop there, otherwise see Is it possible to avoid breaking on a debugger statement in Chrome? - wOxxOm

2 Answers

4
votes

To ignore all breakpoints (including debugger statements):

  1. Open DevTools.
  2. Click Deactivate Breakpoints.

    Deactivate Breakpoints

  3. Reload the page.

0
votes

Open dev tools, go to the sources tab, and in the top right corner is a stop sign icon with the tooltip text 'Pause on Exceptions'. Make sure this is turned off. Here's a screenshot.enter image description here