I have JQuery datatable and i want to delete row when delete link is clicked. Its working fine for first 10 rows ie for the first page. When i move to any another from the pagination. Its not working. Here is my code.
$("#example tbody td.delete").click(function(event) {
var row = $(this).closest("tr").get(0);
oTable.fnDeleteRow( row );
});
All last td of a row has class "delete". What should i do to work for all the pages or for all the records.