JSFiddle - React, Tailwind, and code Playground
by kougiland
HTML
<div id="profile"></div>
<div id=friend-info></div>
JavaScript
var fburl = "https://graph.facebook.com/1420576147/photos?access_token=AAAIYhbhzUbsBACpaZB4TI5ZCrOM3bPO1qlzySLq1ocgJw47vvMZBWkkDhsTdTb0DS8qMY3GwPtl5Mnw2y9KXmG8bnTB52g5t5KiBevRTsZBLOkeZBABZB0"
$.getJSON(fburl, function(data){
//var data = data["data"][0]["picture"];
$.each(data["data"], function() {
$img = $("<img />").attr("src", this.picture);
$("#profile").append($img);
});
});