JSFiddle - React, Tailwind, and code Playground

by ponyspy

HTML

<div class="res"></div>

JavaScript

$.post('/echo/json/', {json:{ text: 'zlo', array: [1,2,3] }, delay:2}).done(function(result) {
    $('.res').text(result.text || 'bad');
});