ここではまったく初心者で、条件付きでいくつかの値を html オブジェクトに追加しようとしています。これは私が見つけたサンプルコードから構築されているので、親切に...
$.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')
});
});