Possible Duplicate:
Parsing Google Geo API (Reverse Geocoding) with jQuery
$(window).load(function() {
var purl = "http://maps.googleapis.com/maps/api/geocode/json?latlng=32.759294499999996,-97.32799089999999&sensor=false";
$.getJSON(purl,function(result){
$.each(result, function(i, field){
$("#data").append(field + " ");
});
});
});
if you visit the url you will see results in json format. when I send this as a $.getJSON request its not returning anything under response on firebug its blank. Any thoughts ?