次のようなテーブルがあります。
<table id="subtask_table" style="width: 80%">
    <tr>
        <th>ID</th>
        <th>Titel</th>
        <th>Beschreibung</th>
        <th>Gemeldet von</th>
        <th>Erstellt am</th>
        <th>Geändert am</th>
        <th>Erledigt</th>
    </tr>
    <tr>
        <td>11</td>
        <td><a href="/taskExplorer/subtasks/edit/11">Termine verschieben</a></td>
        <td></td>
        <td></td>
        <td>2012-07-26 14:34:36</td>
        <td>2012-07-30 08:37:40</td>
        <td>1</td>
        <td><a href="/taskExplorer/subtasks/delete/11">löschen</a></td>
      </tr>
</table>
列erledigt(完了)が0または空の場合、このテーブルの行を非表示にします。
それは私がこれまでに得たものです:
$(document).ready(function() {
    $('#cbHideCompleted').click(function() {
        if($(this).prop('checked')) {
            $('#subtask_table td').each(function() {
                //if td is 'completed' column
                    //if value is 0 or null
                        //hide
            });
        } else {
            $('#subtask_table td').each(function() {
                $(this).show();
            });
        }
    });
});
jqueryセレクターを使用して要素に直接アクセスする方法はありますか?そうでない場合、「// if td is'completed'column」を実装するにはどうすればよいですか?
ご協力いただきありがとうございます。