I would like to make my row table available. All columns should be interactive, but first. However, I would like to achieve this when they click on a line.
This is the code that I still have:
$('.table tbody tr').click( function (e) {
alert ($(this).find('td').eq(1).text());
} );
This code is always executed no matter where I click in the line. However, I would like all the cells in the table to be clickable, except for the first.
Is it possible?
source
share