JSFiddle - React, Tailwind, and code Playground
by pj_js15
HTML
<div id="results"></div>
CSS
#results
{
min-height: 200px;
background-color: tan;
}
JavaScript
$().ready(function(){
alert('test')
})
$('#results').click(function() {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://gist.github.com/1265374.js?file=GetGists.js";
if(!document._write) document._write = document.write;
document.write = function (str) {
document.getElementById('results').innerHTML += str;
};
document.getElementById('results').appendChild(script);
console.log('script added');
});