I am trying to retrieve the exchange rate from Google with jQuery's $.getJSON()
. Using the request: "http://www.google.com/ig/calculator?hl=en&q=1USD=?CAD"
returns a simple JSON file:
{
lhs: "1 U.S. dollar",
rhs: "1.03800015 Canadian dollars",
error: "",
icc: true
}
I am using the following jQuery function to get the Canadian dollar amount:
$(document).ready(function(){
$.getJSON("http://www.google.com/ig/calculator?hl=en&q=1USD=?CAD?&label=rhs&format=json&jsoncallback=?",
function(data){
alert(data);
});
});
</script>
Fire bug displays the correct JSON file but indicates that an invalid label is used.