Bootstrap Table
HTML
<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.css">
<script src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<table id="tableab" data-page-list="[50, 100, 250]"
data-pagination-side="server"
data-pagination="true"
data-height="400"
data-toggle="table"
data-url="/gh/get/response.json/wenzhixin/bootstrap-table/tree/master/docs/data/data1/"
data-search="true"
data-query-params="Else">
<thead>
<tr>
<th data-sortable="true" data-field="name">Name</th>
<th data-field="stargazers_count">Stars</th>
<th data-field="forks_count">Forks</th>
<th data-field="description">Description</th>
</tr>
</thead>
</table>
JavaScript
$(document).ready(function() {
$('#tableab').on('load-success.bs.table', function(e, data){
var table = $('#tableab').data('bootstrap.table');
table.initBody();
});
});