Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.     <head>
  3.         <meta name="viewport" content="width=device-width, initial-scale=1">
  4.         <script src="dataTable/js/jquery.js"></script>
  5.         <script src="dataTable/js/jquery.dataTables.js"></script>
  6.  
  7.         <link rel="stylesheet" href="dataTable/css/jquery.dataTables.css">
  8.  
  9.     </head>
  10. <body>
  11.  
  12.     <table id="example" cellspacing="0">
  13.         <thead>
  14.             <tr>
  15.                 <th>Name</th>
  16.                 <th>Position</th>
  17.                 <th>Office</th>
  18.                 <th>Extn.</th>
  19.                 <th>Start date</th>
  20.                 <th>Salary</th>
  21.             </tr>
  22.         </thead>
  23.         <tfoot>
  24.             <tr>
  25.                 <th>Name</th>
  26.                 <th>Position</th>
  27.                 <th>Office</th>
  28.                 <th>Extn.</th>
  29.                 <th>Start date</th>
  30.                 <th>Salary</th>
  31.             </tr>
  32.         </tfoot>
  33.     </table>
  34.  
  35.     <script>
  36.         $(document).ready(function(){
  37.             $("#example").dataTable({
  38.                 "ajax": "base.json"
  39.             });
  40.         });
  41.     </script>
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement