JSFiddle - React, Tailwind, and code Playground

by TheBuzzer

HTML

<div id="Frame1" style="border:solid 1px black;width:50px;height:50px;margin:auto">Frame1<div id="Frame2" style="border:solid 1px black;width:25px;height:25px;margin:auto">Frame2</div></div>
<input type="button" id="btn1" value="Click" />

JavaScript

$('#btn1').unbind('click').bind('click', function(e) {
    $('#Frame1').append('<span style="font-weight:bold">Test</span>');
});