Answers for "how to refresh ajax table"

0

datatables ajax reload

var table = $('#example').DataTable( {
    ajax: "data.json"
} );
 
setInterval( function () {
    table.ajax.reload();
}, 30000 );
Posted by: Guest on October-23-2021

Code answers related to "how to refresh ajax table"

Code answers related to "Javascript"

Browse Popular Code Answers by Language