How to reload the selected tab? Actually I have problem with reloading part. When I add my data I\'ll successfully saved in datatable but in id field in database it shows pr
Simpler solution:
var dt = $('#table_scroll').dataTable(); $.getJSON(url, null, function (json) { dt.fnClearTable(); dt.fnAddData(json.aaData); dt.fnDraw(); });