JSFiddle - React, Tailwind, and code Playground

by jakie8

HTML

<pre></pre><button>Click</button>

CSS

body{
    padding:50px;
    text-align:center;
}

JavaScript

$('button').live('click', function(e) {
    $.ajax({
        url: '/echo/json/',
        data: {
            json: '{"test":"obj","nonce":12345}'
        },
        type:'POST',
        success: function(data) {
            $('pre').html(data);
        }
    });
});