JSFiddle - React, Tailwind, and code Playground

by kitsunde

JavaScript

$(function () {
        $.ajax({
            url: 'http://www.facebook.com/feeds/page.php?id=237173582992285&format=json',
            type: 'get',            
            dataType: "jsonp",          
            success: function (data) {
                console.log("data successfully came ");
            }, error: function (data) {
                console.log("fail to get the data");                
            }
        });
    });