Hi, Can anybody tell me how I would go about using a button to instigate column search? I currently search on change, here's my code
// Category Search
$('#category').on( 'change', function () {
table
.columns( 5 )
.search( this.value )
.draw();
} );
Any help much appreiated!