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
Post a Comment