I would like to know if it was possible to search for 2 differents things and then redraw the datatable.
I'm now using this :
var table = $('#something').DataTable();
table
.search(something1)
.draw();
It is possible to do something like
table
.search(something1 || something2)
.draw
Thanks!