以下を見てください。
<table border="0" id="npoGridView">
<thead>
<tr>
<th>Quantity Order</th>
<th>Cost P.U</th>
<th>Total</th>
</tr>
</thead>
<tbody>
//TD .......
</tbody>
<tfoot>
<tr>
<th>Quantity Order</th>
<th>Cost P.U</th>
<th id="15">Total</th>
</tr>
</tfoot>
</table>
tfootのthにid を指定しました (つまり、id="15")。jquery を使用してthの値を取得したいと考えています。
jqueryを使用して特定のth値フォームフッターを取得するには?