JSFiddle - React, Tailwind, and code Playground

by Omar X

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<div data-role="page">page</div>

JavaScript

$(document).on("pageinit", function () {
    setTimeout(function () {
        $.mobile.loading('show', {
            text: "use $.mobile.loading(\"show\")",
            textVisible: true,
            theme: "e"
        });
    }, 100);
    setTimeout(function () {
        $.mobile.loading('hide');
    }, 5000);
});