I have a function with jquery getJSON and i need the return the result value back (to Use it somewhere else)
Here is the code:
function getval(){
jQuery.getJSON('http://data.mtgox.com/api/1/BTCUSD/ticker?callback=?', function(data) {
// We can't use .return because return is a JavaScript keyword.
return data['return'].avg.value;
});
}
$(function () {
$(document).ready(function() {
alert (getval());
});
});
This is doesn't work :(
i know i can call external function from inside the getJSON function with the value like:
jQuery.getJSON('http://data.mtgox.com/api/1/BTCUSD/ticker?callback=?', function(data) {
// We can't use return because return is a JavaScript keyword.
mysecondfunction(data['return'].avg.value);
});
function mysecondfunction(value){
//use the value
}
But i have to call the json function from another function because json return a dynamic value and i need to use it.
I hope it clear...
Thank you very much!!