I am trying to debug some javascript in chrome that is loaded dynamically. I tried following the directions here, but it seems outdated. The scripts tab is now called sources, and I can’t seem to find dynamicScript.js even after I press the button.
Can I see dynamically loaded js from the sources tab?
Actually they are there. Press the
, and viola.
In this example, I dynamically included
jquery.easing. They hide it just so there won’t be a bunch of tabs on the bar.Update
Their example is not working. (They might have moved this page from somewhere else?)
As you can see,
dynamicScript.jsis not loaded due to Same origin policy. They tried to load the script fromgoogle.comtoappspot.com, which is not allowed. Notice their example is actually inappspot.com, notgoogle.com. (Don’t know why they do that.)