I find script pause debugger in chrome when ctrl shift I or F12. Thank everybody!
How to pause debugger in chrome using javascript?
Asked Answered
Type debugger;
in your js where you want debugger to pause:
Then load the page while developer tools open.
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.
No, i have a website and I want user can't use F12 on my website –
Taber
@Taber It is not possible to completely block users from using F12. Thats how it is. –
Handstand
this would be a related post #7559909 –
Handstand
© 2022 - 2024 — McMap. All rights reserved.