JSFiddle - React, Tailwind, and code Playground

by Tgwizman

HTML

<iframe id="game" src="" width="640px" height="480px" frameborder="none"></iframe>

<div>
    <input type="button" onclick="link('')" value="Randomly Generated" /><br>
    <input type="button" onclick="link('gun')" value="Glider Gun" /><br>
    <input type="button" onclick="link('butterfly')" value="Butterfly Thing" /><br>
    <input type="button" onclick="link('f')" value="F Pentamino" /><br>
    <input type="button" onclick="link('osc01')" value="Exploding Oscillator Thing" /><br>
    <input type="button" onclick="link('pentadecathlon')" value="Pentadecathlon" />
</div>

<script type="text/javascript">
function link(ext) {
    document.getElementById('game').src = 'http://jsfiddle.net/Tgwizman/UCtug/show/?' + ext;
}
link('');
</script>