セル テーブル内にいくつかのテーブルがネストされています。jQuery を使用してそのセル内のテーブルの数を数えたいのですが、可能ですか?
<table>
<thead>
<tr>
<th>name</th>
<th>age</th>
<th>address</th>
<th>birthday</th>
<th>hoby</th>
<th>country</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="6">
<table class="groupbycountry" id="spain">
<thead> a row of col title </thead>
<tbody> rows of data</tbody>
</table>
<table class="groupbycountry" id="italy">
<thead>a row of col title</thead>
<tbody>rows of data </tbody>
</table>
//and many more table of country according the user input
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="6">
<table name="inputdata">
<form name="myprofile">
//the input tag
</form>
</table>
</td>
</tr>
</tfoot>
</table>
class=groupbycountry
その親テーブル内のテーブルをカウントすることは可能ですか?