Typically, I am familiar with setting breakpoints, inspecting variables, and stepping into functions.
The file Default.htm contains numerous scripts and empty placeholders.
I prefer to proceed through debugging step-by-step. Unfortunately, setting a breakpoint in the first line does not always work:
By the time I step over the next function call, it has already been executed (everything has loaded).
How can I effectively debug asynchronously loading scripts? (the timeline shows that they are loading simultaneously)
Should I consider using an HTTP proxy like Fiddler? I am aware of setting simple breakpoints (BPU), but then what?
In essence - which method - How can I debug my JavaScript code? - is best suited for my specific requirements?