Question

I need to load whole table into div with $.ajax, but after that, Datatables won't work. Can i do something about it?

Was it helpful?

Solution

Probably, the liveQuery plugin could help in that case.

Live Query utilizes the power of jQuery selectors by binding events or firing callbacks for matched elements auto-magically, even after the page has been loaded and the DOM updated.

OTHER TIPS

$(function(){
  $.get("script.php",function(data){
    $.each(data.items, function(i,item){
      $("#anydiv").prepend(item.element);          
    });
  })
})

In script.php read array of database results into array and :

echo json_encode($results_array);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top