JSFiddle - React, Tailwind, and code Playground
HTML
<div id="myTitle">
<h1>
Hello
</h1>
</div>
<div id="myContent">
Click me to update data...
</div>
JavaScript
var someJSONName = "Jimmy"
var someJSONAge = "32"
$("#myContent").html(function () {
$("#myContent").effect("highlight", 1500);
$("#myContent").text("Name: " + someJSONName + " is currently " + someJSONAge + " years old.");
});