I have added 4 JavaScript files to my page:

<script src="scripts/jquery/jquery-1.6.2.min.js"></script>
<script src="scripts/jquery/jquery.mobile-1.0b2.min.js"></script>
<script src="scripts/config.js"></script>
<script src="scripts/test.js"></script>

Google Chrome lists the first two files under scripts but not the last two. If I add the folloing JavaScript to the test.js the alert happens:

alert('test');

How can I make chrome pick up the file to debug?

In the Developer Tools the last two scripts are not showing up. How can I make them show up?

link|improve this question

14% accept rate
Is there a question lurking in there? ;-) And: You're saying in the dev tools, the last two scripts aren't showing up in the drop-down list of scripts? – T.J. Crowder Aug 27 '11 at 19:57
1  
It is now a question :) – Dappy Aug 27 '11 at 20:01
Are the two scripts doing anything? My Chrome Dev picks up my scripts, which are all used within a function that runs on the body's onload. Maybe Chrome is ignoring them because they haven't come into play? – Artur Sapek Aug 27 '11 at 21:11
They should show up. However if they don't, you should consider reporting the bug or updating Google Chrome. – Derek Aug 28 '11 at 0:29
Are you sure they are actually coming down to the browser? Check the network tab... – Jerry Sep 2 '11 at 13:27
show 1 more comment
feedback

2 Answers

Your scripts probably get completely collected (by GC) before debugger has a change to see them. I guess there are no global functions in these scripts.

If I'm right, you can try to put something simple like "function A111() {}" and check that the scripts are there now.

link|improve this answer
feedback

I would check the resources tab in dev tools and see if they are there under scripts.

also include type just to be safe

<script type="text/javascript" src="script.js"></script>

do you have a live example (link)?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.