I have the following jQuery (info from here http://www.threelas.com/2012/02/basic-blogger-json-feed-api.html). the problem i am having is returning the labels array which on the website above says is json.feed.entry[i].category[];
so how can i return an array?
http://jsfiddle.net/Pd2cp/
$.ajax({
url: 'http://www.blogger.com/feeds/2814965631975331659/posts/default?alt=json-in-script&max-results=8',
type: 'get',
dataType: "jsonp",
success: function(data){
for (var i = 0; i < data.feed.entry.length; i++){
var categories = data.feed.entry[i].category[];
$('#blogContainer').append(categories);
}
}
});