JSFiddle - React, Tailwind, and code Playground
by bilbobaggins
HTML
<span id="msg">
tom robinson
</span>
<div id="intro">
meh no content
</div>
JavaScript
$('span#msg').text('The thing was updated!');
$('div#intro').html('Look, HTML');
by bilbobaggins
<span id="msg">
tom robinson
</span>
<div id="intro">
meh no content
</div>
$('span#msg').text('The thing was updated!');
$('div#intro').html('Look, HTML');