Hello, i write row click handler:
$('#mTable tr').unbind().live('click', function() {
//specialFunction()
});
specialFunction must not reachable when i clicked on last <td> in clicked row.
is it possible?
Hello, i write row click handler:
$('#mTable tr').unbind().live('click', function() {
//specialFunction()
});
specialFunction must not reachable when i clicked on last <td> in clicked row.
is it possible?
You can bind it to all td's except last
$('#myTable tr td:not(:last-child)'...
soon.