jQuery, DataTables, ajax error handling: get rid of "Processing" message jQuery, DataTables, ajax error handling: get rid of "Processing" message ajax ajax

jQuery, DataTables, ajax error handling: get rid of "Processing" message


The element which shows the processing message gets the id <idOfTable>_processing, so you could hide it using:

$('#resultTable_processing').hide();

This might have changed, and the id could be different, but the concept stands, you can just find out how to identify the element and hide it. DataTables will show it again if it has to.

Also, do you want the processing message showing up in other ocassions? Because you can just make it never appear by using processing: false on the DataTable's options (or just not setting it at all, since it's the default behaviour not to show it).