JSFiddle - React, Tailwind, and code Playground

by jitter

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>
<script src="http://code.jquery.com/jquery-1.5.js"></script>

JavaScript

$(function() {
    $.ajaxSetup({
        contentType: "my/json"
    });

    $.ajax({
        url: "/echo/json/",
        type: "POST",
        data: undefined
    });
});