$.post("http://openexchangerates.org/", parameters,
function (data) {
var currencyData = eval('( '+data+')');
currency = currencyData["currency"];
}
);
// I want to access currency here. But I am unable to access it.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||
|
|
try declaring the currency variable outside the ajax function. you can set it a default value at first to prevent ambiguity if it returns 'undefined' (for debug purposes)
|
|||||
|
|
Im going to go out and guess this is a cross origin problem. If I'm right you need to set your http server up as a proxy to openexhangerates.org. Does your callback ever execute? |
|||
|
|