I have a column with buttons in a table I\'m using jQuery datatable plugin. The buttons say \"Remove\" and the idea is that when you click on that button it deletes the curr
Try this:
var row = $(this).closest("tr").get(0); oTable.fnDeleteRow(oTable.fnGetPosition(row));
If it doesn't work, check the following example