JSFiddle - React, Tailwind, and code Playground

by Vinay Pratap Singh Bhadauria

HTML

<table>
    <tr>
        <td style="width: 123px;" class="x-grid3-hd x-grid3-cell x-grid3-td-CORE_USERS_ALIAS">
            <div style="" class="x-grid3-hd-inner x-grid3-hd-CORE_USERS_ALIAS" title="Text"> <a href="#" class="x-grid3-hd-btn"></a>Text
                <img src="data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" class="x-grid3-sort-icon"/>
            </div>
        </td>
    </tr>
</table>
<input type="button" id="gettext" value="Check Text">

JavaScript

$("#gettext").click(function(){
alert($(".x-grid3-hd-inner").text());
})