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