//With Ajax
$.ajax({
url: 'http://api.foursquare.com/v1/tips.json?geolat=45.5&geolong=-73.6666667&limit=50',
//data:'geolat=45.5&geolong=-73.6666667&limit=50',
async: false,
dataType: 'json',
type: 'get',
success : function(tips) {
alert(tips+' Show tips content');
var str='';
for (var i=0;i < tips.groups[0].tips.length;i++) {
var cur = tips.groups[0].tips[i];
str = str+'<p><img src="'+cur.user.photo+' "style="width:32px;height:32px;" />'+cur.text+' by '+cur.user.firstname+' '+cur.user.lastname+' on <a href="http://foursquare.com/venue/'+cur.venue.id+'">'+cur.venue.name+'</a></p>';
}
$('#items').append(str);
}
});
//With getJSON
$.getJSON(' http://api.foursquare.com/v1/tips.json', 'geolat=45.5&geolong=-73.6666667&limit=50', function(tips, didit) {
alert(tips+' Show tips content and succed '+didit );
var str='';
for (var i=0;i < tips.groups[0].tips.length;i++) {
var cur = tips.groups[0].tips[i];
str = str+'<p><img src="'+cur.user.photo+'" style="width: 32px;height:32px;" />'+cur.text+' by '+cur.user.firstname +' '+cur.user.lastname+' on <a href=" http://foursquare.com/venue/'+cur.venue.id+'">'+cur.venue.name+'</a></p>';
}
$('#items').append(str);
}, 'json');
});
I hope you can help me