You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.3 KiB
56 lines
2.3 KiB
3 years ago
|
<script type="text/javascript" src="/sort-table.js"></script>
|
||
|
|
||
|
<!-- <style>
|
||
|
table.js-sort-table.js-sort-asc thead tr>.js-sort-active:not(.js-sort-none):after {
|
||
|
content: "\25b2";
|
||
|
font-size: 0.7em;
|
||
|
padding-left: 3px;
|
||
|
line-height: 0.7em;
|
||
|
}
|
||
|
|
||
|
table.js-sort-table.js-sort-desc thead tr>.js-sort-active:not(.js-sort-none):after {
|
||
|
content: "\25bc";
|
||
|
font-size: 0.7em;
|
||
|
padding-left: 3px;
|
||
|
line-height: 0.7em;
|
||
|
}
|
||
|
</style> -->
|
||
|
|
||
|
<head>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<table class="table" id="my_Table" style="border: 1px solid rgb(221, 221, 221);">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Name</th>
|
||
|
<th class="ck_border" style="border: 1px solid rgb(221, 221, 221);">here are some words in front date this is more words</th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Alpha</td>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">12/24/1983</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Bravo</td>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">02/23/2014</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Charlie</td>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">10/09/2022</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Delta</td>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">04/03/1968</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Echo</td>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">05/26/1974</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Foxtrot</td>
|
||
|
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">06/16/1997</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</body>
|