I need a cell value when I click a row
I need a cell value when I click a row
Hello,
I have this function:
[code]
$('#table tbody').on('dblclick', 'tr', function (e) {
//I need the first cell value here
});
[/code]
But I need the first cell of this row (inside this function). How I get a cell value when I click in the row please??
Thenk you!
I have this function:
[code]
$('#table tbody').on('dblclick', 'tr', function (e) {
//I need the first cell value here
});
[/code]
But I need the first cell of this row (inside this function). How I get a cell value when I click in the row please??
Thenk you!
This discussion has been closed.
Replies
[code]
$('td:eq(0)', this).html();
[/code]