Hello, 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 obviously it did not work out