JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://localhost/Ally/Ally.js"></script>
<p>John</p>
CSS
body {
font-family: 'Segoe UI';
}
JavaScript
$.fetch('/echo/json/', {
data: {
'json': '{"John":"Hey","Bob":"Hello"}'
},
method: 'post',
onsuccess: function(xhr) {
$.ready(function() {
var name = $('p').html(0);
$('p').html(xhr.responseJSON[name] + ' $html.');
});
}
});