JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td id='stuff'></td>
</tr>
</table>
<button id='getStuff'>Get Stuff</button>
JavaScript
var count=0;
$(document).ready(function(){
$('#getStuff').click(function(){
$.post('/echo/html/', {html: 'hello'}, function(data){
//alert(data);
$('#stuff').append($('<p>' + data + count + '</p>'));
count++;
});
});
});