JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrap"></div>
CSS
.new{
color: red;
}
JavaScript
$('.wrap').append("<p class='test'>test</p>");
$('.test').addClass('new');
<div class="wrap"></div>
.new{
color: red;
}
$('.wrap').append("<p class='test'>test</p>");
$('.test').addClass('new');