What is it and how to remove. Thank you in advance

enter image description here

  • Link is not working - Vadim Bondaruk
  • Vadim, and now? - Natasha
  • one
    Breakpoint. Breakpoint in Russian. You either put it yourself, or debugger is written in the code - Nick
  • @Nick how to remove it? - Natasha
  • one
    @ Natasha, ctrl+F8 - Komdosh

1 answer 1

Paused in debugger inscription indicates that you have Breakpoint in your code or console.

Breakpoint is a deliberate interruption of program execution, during which a debugger is invoked (in order to see what is being done in a particular segment of code).

Example 1: When you yourself pressed the F12 button (OS Windows) on the keyboard and marked a point on the mouse tab, to stop the script:

Example 1

Example 2: When you deliberately wrote in a debugger; code debugger; before a piece of code you would like to check

Example 2


In example 1, you can disable Breakpoint:

  1. By clicking on the line number with the mouse.
  2. If you want to ignore all Breakpoints, you can press Ctrl + F8 on the keyboard (to re-enable, repeat the operation).

In Example 2, you can:

  1. Disable Breakpoint completely by changing the source code (remove debugger; ).
  2. Comment it out (which works until the first reload of the page) //debugger; .