I have this curiosity
Is it possible to somehow insert javascript into my page and execute it and debug it? Like in the console, but in the console you cannot pause and view variables.
Is it possible to debug the code that I run through the console? Why is it impossible to debug code received through XHR?
Thanks!
One trick I learned today from Chromium is that if you put the word:
debugger;
Right in front of the statement you want to debug. It will break on the debugger. This is really useful for injected scripts.
yes, you can enable the javascript function on our web page using
window.onload = function fun(){alert("test");}
in this case u can give an operator or any function.