I want to select only text from td by ignore 1122 from span.
$(document).on('click', 'table#tableid tbody tr td', function () {
var types = $(this).
console.log(types);
});
HTML
<html>
<table>
<tbody>
<tr><td>Text<span>1122</span></td></tr>
</tbody>
</table>
</html>