4 JavaScript files have been added 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 the scripts, but not the last two. If I add the following JavaScript to test.js , a warning will occur:
alert('test');
How can I get chrome to select a file for debugging?
In the developer tools, the last two scenarios are not displayed. How can I show them?
Happy source share