JSFiddle - React, Tailwind, and code Playground

by Ryan Brown

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<table class="table table-bordered">
 <thead>
   <tr>
    <th></th>
    <th></th>
    <th></th>
    <th></th>
</tr>
</thead>
<tbody id="table_body">
<tr id="table_body_row">
 <td>1</td>
 <td>Mark</td>
 <td>Otto</td>
 <td>@mdo</td>
</tr>
</tbody>
</table>

JavaScript

var row = document.getElementById("table_body_row").value;
var tbody = document.getElementById("table_body").value;

for (i = 0; i < 12; i++) {
    tbody.append(row);
}