DataTables
DataTables Examples
HTML
<link rel="stylesheet" href="//cdn.datatables.net/1.10.0/css/jquery.dataTables.css">
<script src="//cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script>
<table cellpadding="0" cellspacing="0" border="0" class="row-border" id="table">
<thead>
<th class="item-master-on-hand"> On Hand </th>
</thead>
<tbody>
<!-- -->
<tr>
<td class="item-master-on-hand dt-type-numeric">
4
</td>
</tr>
<!-- -->
<tr>
<td class="item-master-on-hand dt-type-numeric">
<img src="/images/refresh-blue-icon.svg">
</td>
</tr>
<!-- -->
<tr>
<td class="item-master-on-hand dt-type-numeric">
8
</td>
</tr>
<!-- -->
<tr>
<td class="item-master-on-hand">
<img src="/images/refresh-blue-icon.svg">
</td>
</tr>
<!-- -->
<tr>
<td class="item-master-on-hand">
<img src="/images/refresh-blue-icon.svg">
</td>
</tr>
<!-- -->
<tr>
<td class="item-master-on-hand">
15
</td>
</tr>
<tr>
<td class="item-master-on-hand">
0
</td>
</tr>
<tr>
<td class="item-master-on-hand">
0
</td>
</tr>
</tbody>
</table>
JavaScript
var table = $('#table').DataTable({});