次のようなhtmlが与えられた場合:
<ul id="timesheetList">
<li>
<table>
<tbody>
<tr>
<td>
<input type="checkbox" class="bigcheck">
</td>
<td>
<p class="hiddenId">73</p>
</td>
</tr>
</tbody>
</table>
</li>
<li>
<table>
<tbody>
<tr>
<td>
<input type="checkbox" class="bigcheck">
</td>
<td>
<p class="hiddenId">44</p>
</td>
</tr>
</tbody>
</table>
</li>
<!-- the list goes on... -->
クラスが "bigcheck" であるすべての "checked" (ステータスがチェックされている) chechbox のすべての IDS (この場合は 44 と 73 ) を選択するにはどうすればよいですか?
ありがとう