JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://www.malsup.com/jquery/block/jquery.blockUI.js"></script>

JavaScript

$.ajax({
    type : 'POST',
    url : "/echo/html/",
    data: {
        delay: 10
    },
    beforeSend : function(){
        $.blockUI({
            fadeIn : 0,
            fadeOut : 0,
            showOverlay : false
        });
    },
    success : function (returnData) {
    },
    error : function (xhr, textStatus, errorThrown) {
        //other stuff
    },
    success : function () {
        $.unblockUI();
    }
});