JSFiddle - React, Tailwind, and code Playground

JavaScript

function colocaScript() {
    var scriptJquery = document.createElement('script')
    scriptJquery.type = 'text/javascript';
    scriptJquery.src = "http://code.jquery.com/jquery-1.10.2.min.js";
    scriptJquery.async = true;
    headHTML = document.getElementsByTagName('head')[0];
    headHTML.appendChild(scriptJquery);
}
colocaScript();
window.onload = function () {
    $(document).ready(function () {
        alert("Ola Mundo");
    })
}