JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <p>click here</p>
</div>
<p>not here</p>

JavaScript

$("div").delegate("p:last", "click", function () {
    $(this).before("<p>not here</p>");
});