So that's your problem there :)
If your app is loaded via HTTPS, it cannot load scripts via HTTP. All the requests must be made via HTTPS.
For the jQuery script, just edit your index.html and replace
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
with
<script src="https://code.jquery.com/jquery-2.0.3.min.js"></script>
(note the s).
For the other script (from intel.com), I think you will have to download it and copy it locally to your game's folder. Then instead of loading it from http://debug-software.intel.com/target/target-script-min.js just load it from target-script-min.js (so using a relative path).