JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.jquery.com/jquery-1.7.2.js "></script>
<div>
<p>click here</p>
</div>
<p>not here</p>
JavaScript
$(function () {
$("div").delegate("p:last", "click", function () {
$(this).before("<p>not here</p>");
});
});