私はこのコードを持っています:
HTML
<table id="table">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>...</td>
<td>...</td>
</tr>
...
</tbody>
</table>
脚本
<script type="text/javascript">
$("#table").tablesorter();
</script>
ソート可能な列のタグに特別なセレクターを追加するにはどうすればよいですか?