javascript - how to convert html into dynatable or datatable -


my php page returns html table data, need convert either datatable or dynatable, tried including required files (javascripts , css) page php return table , in javascript function used

 <script>  $(document).ready(function() {     $('#mytable').dynatable();  });  </script> 

it returns html table only, no dynatable features or paging.

i have tried datatables not working

you need include datatable.js , can function:

 $(document).ready(function() {      $('#mytable').datatable();  }); 

Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -