JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<p>
<span>hello</span> there
</p>
</div>
JavaScript
$.event.special.sanitation = {
teardown: function(){
alert("I'm being repressed! "+$(this).text());
}
};
$("p").on("sanitation", $.noop);
$("span").on("sanitation", $.noop);
$("div").html("");