DataTables

HTML

<link rel="stylesheet" href="https://cdn.datatables.net/r/dt/dt-1.10.9/datatables.min.css">
<script src="https://cdn.datatables.net/r/dt/dt-1.10.9/datatables.min.js"></script>
<table id="example" class="display" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th>Tag</th>
            <th>Autofixes</th>
            <th>Manage</th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
        </tr>
    </tfoot>
</table>

JavaScript

$(document).ready(function (){
    var table = $('#example').DataTable({
        "ajax": "https://api.myjson.com/bins/31k02",
        "columnDefs": [{
           "targets": 2,
           "render": function(data, type, full, meta){
              return '<button type="button">Manage</button>';
           }
        }]        
    });
});