For 1.7+ version of jQuery the use of the "live" function is depricated and instead should use the "on" function so the example code should be:
instead of
Affected page: http://www.datatables.net/release-datatables/examples/server_side/select_rows.html
Regards Edwin
/* Click event handler */ $(document).on('click', '#example tbody tr', function () {
instead of
/* Click event handler */ $('#example tbody tr').live('click', function () {
Affected page: http://www.datatables.net/release-datatables/examples/server_side/select_rows.html
Regards Edwin