Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
  5. <link rel='stylesheet' type='text/css' href='http://cdn.datatables.net/plug-ins/1.10.7/integration/jqueryui/dataTables.jqueryui.css' />
  6. <link rel='stylesheet' type='text/css' href='http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css' />
  7. <link rel='stylesheet' type='text/css' href='http://cdn.datatables.net/responsive/1.0.6/css/dataTables.responsive.css' />
  8.  
  9. <script src='http://code.jquery.com/jquery-1.11.1.min.js'></script>
  10. <script src='http://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js'></script>
  11. <script src='http://cdn.datatables.net/responsive/1.0.6/js/dataTables.responsive.js'></script>
  12. </head>
  13. <body>
  14. <table class='display' id='table'>
  15. <thead>
  16. <tr>
  17. <th>Name</th>
  18. <th>Position</th>
  19. <th>Office</th>
  20. <th>Start date</th>
  21. <th>Salary</th>
  22. </tr>
  23. </thead>
  24.  
  25. </table>
  26.  
  27. <script>
  28. $(document).ready(function() {
  29. table = $('#table').dataTable({
  30. 'processing': true,
  31. 'serverSide': true,
  32. 'ajax': '1.php',
  33. 'columns': [
  34. { 'aaData': 'Name'},
  35. { 'aaData': 'Position'},
  36. { 'aaData': 'Office'},
  37. { 'aaData': 'Start date'},
  38. { 'aaData': 'Salary'}
  39.  
  40. ]
  41.  
  42. });
  43. });
  44. </script>
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement