Use datatables library

This commit is contained in:
Dita Aji Pratama 2025-06-10 10:47:55 +07:00
parent 7a497b1d4e
commit 588a1d0a90

View File

@ -1,22 +1,28 @@
<html> <html>
<head> <head>
<title>Widuri Client</title> <title>Widuri Client</title>
<link rel="stylesheet" href="//cdn.datatables.net/2.3.2/css/dataTables.dataTables.min.css">
</head> </head>
<body> <body>
<table> <table id="table-list">
<tr> <thead>
<th>ID<th> <tr>
<th>Name<th> <th>ID</th>
<th>Phone<th> <th>Name</th>
</tr> <th>Phone</th>
</tr>
</thead>
<tr> <tbody></tbody>
<td></td>
<td></td>
<td></td>
</tr>
</table> </table>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="//cdn.datatables.net/2.3.2/js/dataTables.min.js"></script>
<script src="js/carrack.js"></script> <script src="js/carrack.js"></script>
<script>
var table = $('#table-list').DataTable({})
</script>
</body> </body>
</html> </html>