JSFiddle - React, Tailwind, and code Playground
by russau
HTML
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<div class="container theme-showcase" role="main">
<table id='values' class="table table-hover">
<tbody>
<tr><th>Name</th>
<th>Value</th></tr>
</tbody>
</table>
✌😨
</div>
JavaScript
$("#values tbody")
.append($('<tr>')
.append('<td>x</td>')
.append('<td>y</td>'));