What is it and how to remove. Thank you in advance
1 answer
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 2: When you deliberately wrote in a debugger; code debugger; before a piece of code you would like to check
In example 1, you can disable Breakpoint:
- By clicking on the line number with the mouse.
- 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:
- Disable Breakpoint completely by changing the source code (remove
debugger;). - Comment it out (which works until the first reload of the page)
//debugger;.
|



debuggeris written in the code - Nickctrl+F8- Komdosh