views:

16

answers:

0

I am working on a Yahoo! App which requires certain external Javascript Frameworks to be loaded and used. Also in the Yahoo! App Best Practices Guide, it is also mentioned that the sources should be externalized, however, externalization isn't working for me.

I am using the standard procedure to load the external JS file like the following:

<script src="http://www.google.com/js/nxsl.1.js"&gt;&lt;/script&gt;

But the above statement is giving me an error that external sources are not allowed.

Is there any way to use external JS files as I don't want to include all of my JS Login inline, it doesn't make sense to me and majorly my code won't be re-usable.

Any thoughts ?