I manage to get a collection of cells in a row when this row is clicked with the following:
$('.NamesGridClass tbody tr').bind('click', function() {
var ch = $(this).children();
alert(ch[0] + ' ' + ch[1]);
});
The above selection snippet successfully displays :
[object HTMLTableCellElement] [object HTMLTableCellElement]
I have tried ch[0].html(), ch[0].val(), ch[0].text(), and get errors. How can I get the content of my cells here ?