JSFiddle - React, Tailwind, and code Playground
by jimkennelly
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.18.3/bootstrap-table.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.18.3/bootstrap-table.min.css">
<table id="table">
<thead>
<tr>
<th data-field="id">Name</th>
<th data-field="name">Stars</th>
<th data-field="price">Forks</th>
</tr>
</thead>
</table>
JavaScript
$(function() {
$table = $('#table');
$table.bootstrapTable({
url: 'https://gist.githubusercontent.com/jimgit/2638908474bf9e652d17ed3c1161dc1f/raw/3a7c1637fe3eda58f9700ed557c4306d5b36f44a/myjson.json',
});
});