JSFiddle - React, Tailwind, and code Playground

by brandon_rmsy

JavaScript

// Loading JSON  with CROS

var url = 'https://dl.dropboxusercontent.com/s/lv0l0cbp2ksy8y4/df.json';
$.ajax({
    type: 'GET',
    url: url,
    async: false,
    contentType: "application/json",
    dataType: "json",
    success: function (data) {
        alert('success');
        console.log(data);
    },
    error: function (e) {
        alert('error');
        console.log(e);

    }
});