I\'m using DataTables (datatables.net) and I would like my search box to be outside of the table (for example in my header div).
Is this possible ?
This one helped me for DataTables Version 1.10.4, because its new API
var oTable = $('#myTable').DataTable(); $('#myInputTextField').keyup(function(){ oTable.search( $(this).val() ).draw(); })