5

I find script pause debugger in chrome when ctrl shift I or F12. Thank everybody!

justcntt
  • 147
  • 1
  • 12

2 Answers2

8

Type debugger; in your js where you want debugger to pause:

Type debugger Screenshot

Then load the page while developer tools open.

Paused Screenshot

Hexfire
  • 5,324
  • 8
  • 28
  • 40
spiders.here
  • 98
  • 2
  • 9
1

Open the Devtools, you can find a tab called Sources in which press ctrl + P and enter the name of the js file you want to debug. Once you open the file, go to the line where you want to debug. Click on the line number at the point to setup a debug point. You can setup Multiple Debugging points the same way too. When the code is called the debugger will pause at the point specified.

Alternatively, In your js code you can specify debugger; which will pause the debugger at the location you want.

Neovire
  • 87
  • 1
  • 8