0
Good night guys, once again here came a doubt.
I have a table ready (and empty) on the page HTML, and I’d like to fill it out using JS, is it possible? I’ll leave the code below for better understanding:
HTML
<table class="table table-bordered" id="tableClient">
<thead>
<tr>
<th scope="col">Nome</th>
<th scope="col">Email</th>
<th scope="col">CPF</th>
<th scope="col">Criado em</th>
</tr>
</thead>
<tbody>
<tr>
<td id="name"></td>
<td id="email"></td>
<td id="cpf"></td>
<td id="created"></td>
</tr>
</tbody>
</table>
I’d like to fill in each column, name, email, Cpf, created using arrays created, but unfortunately I could not find anything similar to give me a light..
I’m grateful for anyone who can help me!
Yes it is possible.
– Augusto Vasques
Whoa, what’s up Augusto, baby? Could you give me an example of how to do that? I don’t want to be lazy, but I couldn’t find anything like it that could help me..
– Alisson de Oliveira