tags:

views:

36

answers:

1

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?

+3  A: 

idea

You can bind it to all td's except last

solution

$('#myTable tr td:not(:last-child)'...

example

soon.

Adam Kiss