I have a project that uses a core JSP to include component JSPs. Each JSP has its own JS file, which is included through the script tag with the corresponding URL. When I open the Chrome Developer tools for debugging my JavaScript, it seems to only display top-level JS files.
I tried inserting warnings into my junior JS layer to make sure the scripts load correctly and they really warn about page loading. However, JS files are not listed on the sources tab in the Chrome Developer Tools.
Is this known / expected behavior and is there a way to debug these files in Chrome?
source
share