JSFiddle - React, Tailwind, and code Playground

by jelane20

HTML

<table>
    <tr>
        <td class="ellipsis" title="make this the string">text</td>
    </tr>
</table>

JavaScript

$('td.ellipsis').text(function(){
    return this.title;
});