$(document).ready(function () {
$.getJSON('https://maps.googleapis.com/maps/api/place/textsearch/json?query=Kfc+sydney&sensor=true&key=AIzaSyD-jxenRCJipqw5Kg-HXQbRXUK8dHNFz3A',
function (data) {
alert(data);
});
});
My Google Maps URL shows the JSON object when requesting it from the browser but not from using jQuery.