A dynamically-added script is not showing up in the browser's debugger's scripts section.
Explanation:
I need to use and have used
if( someCondition == true ){
$.getScript("myScirpt.js", function() {
alert('Load Complete');
myFunction();
});
}
so that myScript.js can be dynamically loaded on meeting some condition... And myFunction can be called only after getting the whole script loaded...
But browsers are not showing the dynamically loaded myScript.js in their debugger's script section.
Is there another way round so that all of the goals may be achieved which will make one to be able to debug a dynamically-loaded script there in the browser itself?
debugger;
to auto stop in the dynamic loaded script, see javascript.info/debugging-chrome – Darrow