I find script pause debugger in chrome when ctrl shift I or F12. Thank everybody!
2 Answers
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.
3 Comments
justcntt
No, i have a website and I want user can't use F12 on my website
Neovire
@justcntt It is not possible to completely block users from using F12. Thats how it is.
Neovire
this would be a related post stackoverflow.com/questions/7559409/…
