Where to put javascript files.
DougMay 13 2012 — edited Mar 22 2013I am working in Apex 4.0.
I have found javascript code titled accounting.js. It is available at http://josscrowcroft.github.com/accounting.js/
The instruction on use of the code are as follows:
"Download the script and put it somewhere, then do this:
<script src="path/to/accounting.js"></script>
<script type="text/javascript">
// You can do this now:
accounting.formatMoney(5318008);
</script>"
The accounting.js file is over 30,000 characters. Where do I put it so that I can reference it from any page in my application?
Then what do I need to do on a page where I want to use it?