Nithisaran

Untitled

Sep 17th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <script src="https://code.jquery.com/jquery-3.5.1.min.js"
  8.        integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
  9.     <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
  10.        integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"></script>
  11.     <script src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"></script>
  12.     <link rel="stylesheet" href="https://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css">
  13.     <title>dataTable</title>
  14. </head>
  15.  
  16. <body>
  17.     <script>
  18.         $(document).ready(function () {
  19.             $('#data-table').DataTable({
  20.                 "ajax":"example2.json"
  21.             });
  22.         });
  23.     </script>
  24.     <table id="data-table">
  25.  
  26.         <thead>
  27.             <tr>
  28.                 <th>Name</th>
  29.                 <th>Position</th>
  30.                 <th>Address</th>
  31.                 <th>Zipcode</th>
  32.                 <th>Year</th>
  33.                 <th>Salary</th>
  34.             </tr>
  35.         </thead>
  36.     </table>
  37. </body>
  38.  
  39. </html>
Add Comment
Please, Sign In to add comment