JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<span>Project id</span><br/>
<span>Object id</span><br/>
<span>Big id</span><br/>
<span>Small id</span><br/>
<span>Small-id</span><br/>
</body>
JavaScript
$("body").html(function(i, t) {
return t.replace(/( id)/g, "ID");
});