次の構造のテーブルがあります。
<table id="mytable" >
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>David</td>
<td>45</td>
<td> <div class="sortCriteria">David</div> <div>More complex structure here</div> </td>
</tr>
</tbody>
</table>
テーブルをソートするプラグインがいくつかあることは知っていますが、テーブル構造が少し複雑 (iframe やその他の要素が含まれている場合もあります) であるため、ほとんどすべてのプラグインが機能/パフォーマンスに失敗しています。
Details
実際には、すべての値でフィールドを並べ替えたくはありませんTD
が、ただ取るsortCriteria
だけです(他の部分は無視してください)。
どうすれば始められますか?