JSFiddle - React, Tailwind, and code Playground

by Steven Senkus

JavaScript

$(document).ready(function () {

    $.ajax({
        type: "POST",
        url: 'http://dev.gpcontent.com/insite/items/unique/202',
     //  dataType: 'json',

        success: function (data) {
            console.log('success!', data);
        },

        error: function (e) {
            console.log('error', e);
        }
    });



});