JSFiddle - React, Tailwind, and code Playground
HTML
<p>test
<met content="text/html; charset=unicode" http-equiv="Content-Type" />
</p>
<p>test2
<meta content="MSHTML 8.00.6001.18702" name="GENERATOR" />
</p>
JavaScript
$("meta").each(function () {
var $this = $(this);
if ($this.parents("p").length > 0) {
$this.remove();
}
});