JSFiddle - React, Tailwind, and code Playground
by rushijogle
HTML
<body onLoad="getFb()">
</body>
JavaScript
function getFb() {
$.getJSON('https://www.facebook.com/feeds/page.php?id=136617136381867&format=json&callback=?',function(data){
var feedDesc = "";
$.each(data.feed.entry, function(i, item) {
feedDesc = "Message: " + item.content;
alert(feedDesc);
});
});
}