I\'m creating a registration page where someone can register up to 20 other people if they wanted to. So I have these text boxes:
First Name:
Here is the way this is now done in DataTables 1.10
var dTable = $('#example').DataTable(); $('#addbtn').on( 'click', function () { dTable.row.add([ $('#fname').val(), $('#lname').val(), $('#email').val() ]).draw(); });