JSFiddle - React, Tailwind, and code Playground
by prasad raja
JavaScript
$(function () {
$.ajax({
url: 'http://www.facebook.com/feeds/page.php?id=434589243263648&format=JSON',
type: 'get',
dataType: "jsonp",
success: function (data) {
alert("data successfully came ");
}, error: function (data) {
alert("fail to get the data");
}
});
});