Difference between revisions of "Hicham essai 2"

From wiki
Jump to navigation Jump to search
 
(25 intermediate revisions by the same user not shown)
Line 1: Line 1:
<head>
+
{{Delete}}
  <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>
 

Latest revision as of 15:31, 13 April 2023