Есть таблица типа
<table><tr class="main-head-table">
<th> текст</th>
<th> текст</th>
<th> текст</th>
</tr><tr>
<td colspan="6" style="text-align: center; font-weight: bold;" class="hide-tr">Администрация</td>
</tr><tr>
<td> текст</td>
<td> текст</td>
<td></td>
</tr><tr>
<td> текст</td>
<td>тут текст</td>
<td></td>
</tr>
</table>
Нужно реализовать поиск по ней исходя из содержимого value у инпута с типом чекбокс
$('.right-menu').click(function(){
$.each($('.checkbox-otd'),function(index, value){
if($(this).prop('checked')){
_this = this;
$.each($("#otd-table table tr").not(".main-head-table"), function() {
if($(this).text().toLowerCase().indexOf($(_this).val().toLowerCase()) === -1) {
$(this).hide();
$('.hide-tr').hide();
} else {
$(this).show();
$('.hide-tr').show();
}
});
}
})
})
Не получается осуществить поиск, где ошибка?