jquery-KivaSort simple
by cristoper
HTML
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Basic six-column KivaSort example" />
<link rel="stylesheet" href="//cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css">
<meta charset="utf-8">
<title>Kiva Sort</title>
</head>
<body>
<table id="KivaSort" class="display compact">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Portfolio Yield</th>
<th>Profitability</th>
<th>Country</th>
<th>Default Rate</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script
src="//code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<script src="//cdn.datatables.net/1.10.10/js/jquery.dataTables.min.js"></script>
<script src="//cristoper.github.io/jquery-KivaSort/kiva_sort.js"></script>
</body>
</html>
JavaScript
$(document).ready(function () {
$('#KivaSort').makeKivaTable();
});