JSFiddle - React, Tailwind, and code Playground

by shawnwildermuth

HTML

<div>Status</div>
<button>Submit</button>

JavaScript

$.ajax("/echo/json/").success(function (e) {
  $("div").text(e.result);
});