Is that possible to invoke a javascript function in success of datatable ajax call. Here is the code am trying to use,
var oTable = $(\'#app-config\').dataTa
For datatables 1.10.12.
$('#table_id').dataTable({ ajax: function (data, callback, settings) { $.ajax({ url: '/your/url', type: 'POST', data: data, success:function(data){ callback(data); // Do whatever you want. } }); } });