I have a button that apply filter to jquery datatable
$(\"#buttonFilter\").button().click(function() { if (lboxColor.val() != null) {
I've been searching for about an hour, for anyone using DataTables 1.10+ if you want to get the filtered (better term: "searched") rows:
var table = $('.table').DataTable({...}); function selectOnlyFiltered(){ var filteredRows = table.rows({filter: 'applied'}); }