datatable load with default filter value
问题 Trying to build a custom search using input box in datatable. Please find the fiddle version. http://jsfiddle.net/c6cu705n/ I am trying to load the table only with the value of 'San Francisco' and not with other values. tried all following option - no luck - any help would be grateful. //Option 1 $('#mytext').on('change', function () { table.columns(2).search( this.value ).draw(); }); //Option 2 $('#mytext').on('load', function () { table.columns(2).search( this.value ).draw(); }); //Option 3