JSFiddle - React, Tailwind, and code Playground
HTML
<p>Example</p>
CSS
p.toggled:before {
content: "show-me";
}
JavaScript
$("p").on("click", function() {
$(this).toggleClass("toggled");
});
<p>Example</p>
p.toggled:before {
content: "show-me";
}
$("p").on("click", function() {
$(this).toggleClass("toggled");
});