In my development I need to include third part javascripts; like money.js (http://josscrowcroft.github.com/money.js/)
What is the best \'clean\'/\'proper\' way to ac
pure javascript did the trick for me. I just included this block of code in the launch function
var scriptTag = document.createElement('script'); scriptTag.src = 'specify the path here...'; document.body.appendChild(scriptTag);
the scriptTag gets appended into the body of your index file