I need to start debug JavaScript when page has loaded and Javascript starts.(OnLoad event call), but i haven’t acess to source code of web site and can’t modified it(like debug; command).
help please with it
best regards
Vlad
I need to start debug JavaScript when page has loaded and Javascript starts.(OnLoad event
Share
Why not using some Web Browser tool? Like Firebug on Mozilla or Developer Tools in Chrome(Just click F12 while in Chrome Browser, Select Sources Tab and then select the .js file you want.)
I guess the onload event will be triggered with something like
So stick a breakpoint on the load() method.