Difference between revisions of "Hicham essai 2"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | + | <head> | |
− | + | <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.11.4/datatables.min.css"/> | |
− | + | <script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
− | + | <script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.11.4/datatables.min.js"></script> | |
− | + | </head> | |
− | + | ||
− | + | <body> | |
− | + | <table id="myTable" class="wikitable"> | |
− | + | <thead> | |
− | + | <tr> | |
− | + | <th>Family Name</th> | |
− | + | <th>First Name</th> | |
− | + | <th>E-mail</th> | |
− | + | <th>Declaration received</th> | |
− | + | </tr> | |
− | + | </thead> | |
− | + | <tbody> | |
− | + | <tr> | |
− | + | <td>Adams</td> | |
− | + | <td>Diane</td> | |
− | + | <td>diane.adams@sac-isc.gc.ca</td> | |
− | + | <td>No</td> | |
− | + | </tr> | |
− | + | <!-- more rows... --> | |
− | + | </tbody> | |
− | + | </table> | |
− | + | ||
− | + | <script> | |
− | + | $(document).ready(function() { | |
− | + | $('#myTable').DataTable({ | |
− | + | "paging": false, | |
− | + | "searching": true, | |
− | + | "ordering": true, | |
− | + | "info": false, | |
− | + | "order": [[ 0, "asc" ]] | |
− | + | }); | |
− | + | }); | |
− | + | </script> | |
− | + | </body> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Revision as of 08:46, 24 March 2023
<head>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.11.4/datatables.min.css"/> <script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.11.4/datatables.min.js"></script>
</head>
<body>
<thead> </thead> <tbody> </tbody>Family Name | First Name | Declaration received | |
---|---|---|---|
Adams | Diane | diane.adams@sac-isc.gc.ca | No |
<script> $(document).ready(function() { $('#myTable').DataTable({ "paging": false, "searching": true, "ordering": true, "info": false, "order": 0, "asc" }); }); </script>
</body>