JSFiddle - React, Tailwind, and code Playground

by Emre Erkan

HTML

<table>
    <tr><td>Tools and Other: Hammers</td></tr>
    <tr><td>Tools and Other: Wrenches</td></tr>
</table>

JavaScript

$('td').html(function() {
    return $(this).text().replace('Tools and Other: ', '');
});