I have home.html
Nombre: <input type="text" id="nombre">
<button type="button" id="add">Agregar</button>
<table id="test">
<thead>
<tr>
<th>Nombre</th>
</tr>
</thead>
<tbody>
<tr>
<td class="espacioNomb">
</td>
<td class="espacioNomb">
</td>
</tr>
</tbody>
</table>
What you want to do is that when you enter a name in input, I insert it in the <td class="espacioNomb">
This is what I was doing but the information does not arrive at the table of testing.html
$("#add").on("click", function(){
$('#test > tbody').append('<tr><td>'+$("#nombre").val());
});