Bootstrap Table

by jimkennelly

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="table">
    <thead>
    <tr>
        <th data-field="name">Name</th>
        <th data-field="stargazers_count">Stars</th>

    </thead>
</table>

JavaScript

//start with an empty array
var data = [];



// push new items in to the array
// array will have 10 items when done
for (i = 1; i <= 10; i++) { 
   data.push({"name": i,"stargazers_count": i*i});
}


$(function () {
    $('#table').bootstrapTable({
        data: data
    });
});