I have the following structure in my HTML:
<!-- O número de tbody's sera gerado dinamicamente, de acordo com o número de estados -->
<tbody name="tbodyEstados">
<tr style="background:#F5F5F5;">
<td>
Nome do estado
</td>
</tr>
<tr>
<td>
<!-- o número de div's será gerado dinamicamente -->
<div name="divOficina">
<label>
Nome de uma oficina
<input type="hidden" value="id_do_objeto">
</label>
</div>
</td>
</tr>
</tbody>
Through javascript, I'm using the document.getElementsByName ('tbodyEstados') function to get an array with all tbody's of states, but then I need to iterate each of the items in that list and pick up from them separately for each state , the div elements that have the name: "divOffice". Does anyone know how I can do this?