Where should I put the json result in money.js?
Reading the documentation http://openexchangerates.github.io/money.js/#fx.rates Its says you need to set up your rates: fx.base = "USD"; fx.rates = { "EUR" : 0.745101, // eg. 1 USD === 0.745101 EUR "GBP" : 0.647710, // etc... "HKD" : 7.781919, "USD" : 1, // always include the base rate (1:1) /* etc */ } Which I totally get, only these will then be static rates. It says to have dynamic rates you need to add the json api: // Load exchange rates data via AJAX: $.getJSON( // NB: using Open Exchange Rates here, but you can use any source! 'http://openexchangerates.org/api/latest.json?app_id=[I hid