$(document).ready(function() {
$.ajax({
type: 'GET',
url: "http://www.google.com/ig/calculator?hl=en&q=1GBP=?USD",
dataType: "json"
}).done(function() {
alert("success");
}).fail(function() {
alert('fail');
});
});
I'm new to this so please can someone tell me why does this fail? In firebug I am getting '200 OK' for the request.