Fairly easy yet i did not find how to do this online.
I want the first TD of the this element (row)
$(document).on("click", "#posTable tr", function() {
alert($(this).('td:first').text());
});
i tried:
alert($(this).('td:first').text());
alert($('td:first', $(this).parents('tr')).text()));