datatable
by Swetalina
HTML
<table class="table table-hover" id="myTable">
<thead>
<tr>
<th>Sl No.</th>
<th>ID</th>
<th>Name</th>
<th>Phone</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>2</td>
<td>40</td>
<td><a href="http://demo.ratnatechnology.co.in/genie/admin/customer_details/40">bapjr</a></td>
<td>1236547071</td>
<td>[email protected]</td>
</tr>
<tr>
<td>3</td>
<td>39</td>
<td><a href="http://demo.ratnatechnology.co.in/genie/admin/customer_details/39">bapjr</a></td>
<td>12365470713</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
JavaScript
$(document).ready(function() {
//$.noConflict();
$('#myTable').DataTable();
});