JSFiddle - React, Tailwind, and code Playground

by Gert Vaartjes

JavaScript

var objects;

$.ajax({
    type: "GET",
    url: 'http://localhost:8080/highcharts-cloud-api-web/highcharts/object/dump.json',
    dataType: "json",

    success: function (data) {

        objects = JSON.parse(data);
        console.log('objects ', objects);
    }
});