1
Ola, I have the following table in html
<table style="display:none;" id="tableTime">
<tr>
<td class="hora">08:00</td>
<td class="eventoAgenda" id="0800"></td>
<td class="idEvento" id="id0800"></td>
<td class="statusVerde"> <input name="status" type="checkbox" ></input> </td>
</tr>
How do I get the <input>
that is inside the <td class="statusVerde>
in jquery??
I tried something similar to this:
$('#tableTime tr #statusVerde input #status')
but it obviously didn’t work out
$("#tableTime input[name='status'")
to access the input name.– Pedro Camara Junior
and if the table is dynamic? type exist some imput with the same name? how can I take the value of each one? in javascrip
– user162668