JSFiddle - React, Tailwind, and code Playground
HTML
<div class="result"></div>
JavaScript
a = $.post('https://httpbin.org/get', function( data ) {
alert(data);
}) .done(function() {
alert( "second success" );
})
.fail(function() {
alert( "error" );
})
.always(function() {
alert( "finished" );
});