I am trying to initialize a Datatable with a default search value that the user can either replace or refine. This is with server side data. I have not read anything where you can do this in the Datatables documentation.
$('#example_filter label input[type=text]').val('Default Product')
The above value sets the value, but since the keystroke is not enabled, the event handler does not accept it. Is there a method that I can associate with the above that will act as an input key, or should I write an event handler that looks for changes to the field. I am new to datatables and new to jQuery.
source share