<table id="tabla">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
</tr>
</table>
Currently to enter data to my table use apend, how can I insert a button?
$('#tabla').append('<tr><td>'+dato+'</td><td>'+dato+'</td><td>'+dato+'</td></tr>');
I was trying this out
$('tabla').append('<input type="button" value="test" />');
But I can not insert a button greetings!