JSFiddle - React, Tailwind, and code Playground
by hbirjand
HTML
<div>
<p class="outer">this is the paragraph text.</p>
</div>
CSS
.outer {background-color:#ddd;}
.jclass {color:#fff;}
JavaScript
$("document").ready ( function () {
$("p").addClass(".jclass");
});