Je suis totalement novice et j'essaie d'ajouter conditionnellement des valeurs à un objet html. Ceci est construit à partir d'un exemple de code que j'ai trouvé, alors soyez gentil...
$.getJSON('url to facebook json feed', function(fbresults){
$.each(fbresults.data, function(){
$('<div></div>')
.append('<h1>' + this.from.name + '</h1>')
.append('<p>' + this.story + '</p>')
$if (typeof this.picture !== "undefined") {
.append('<img src="' + this.picture + '">')};
.appendTo('#facebook')
});
});