JSFiddle - React, Tailwind, and code Playground
by 8ogdan
HTML
<p>The quick brown fox jump over the lazy dog.</p>
<p>The quick brown fox is too hungry.</p>
<p id="fbpurityinfobar">The poor hid: brown fox is tired and thirsty.</p>
JavaScript
$(document).ready(function(){
$('#fbpurityinfobar').each(function () {
var $this = $(this);
$this.html($this.text().replace(/\bhid\b/g, ''));
});
});