Guest User

Untitled

a guest
Jun 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <table id='ejemplo1' class='table table-bordered table-striped'>
  2. <thead>
  3. <tr>
  4. <th>Resistencia</th>
  5. <th>M3</th>
  6. <th>Tiro</th>
  7. <th>Precio unitario</th>
  8. <th>Costo total</th>
  9. </tr>
  10. </thead>
  11. <tbody id="content">
  12.  
  13. </tbody>
  14. <tfoot>
  15. <tr>
  16. <th>Resistencia</th>
  17. <th>M3</th>
  18. <th>Tiro</th>
  19. <th>Precio unitario</th>
  20. <th>Costo total</th>
  21. </tr>
  22. </tfoot>
  23. </table>
  24.  
  25. <script>
  26. $(document).ready(function() {
  27.  
  28. $(function () {
  29. $("#ejemplo1").DataTable({
  30. "ajax": "pruebas/ajax-grid-data.php"
  31. } );
  32. });
  33. });
  34. </script>
  35.  
  36. <script>
  37. function refresh_table() {
  38. $("#ejemplo1").DataTable({
  39. "ajax": "pruebas/ajax-grid-data.php"
  40. } );
  41. }
  42.  
  43.  
  44. $(document).ready(function() {
  45.  
  46. t = setInterval(refresh_table,1000);
  47. });
  48. </script>
Add Comment
Please, Sign In to add comment