Показать сообщение отдельно
  #2 (permalink)  
Старый 23.01.2013, 08:01
Аватар для ОлегА
Профессор
Отправить личное сообщение для ОлегА Посмотреть профиль Найти все сообщения от ОлегА
 
Регистрация: 25.08.2011
Сообщений: 420

<button>Кнопка</button>
<table id="my_table">
<tbody>
<tr>
<td>text1</td><td><input type="checkbox"></td>
</tr>
<tr>
<td>text2</td><td><input type="checkbox"></td>
</tr>
<tr>
<td>text3</td><td><input type="checkbox"></td>
</tr>
<tr>
<td>text4</td><td><input type="checkbox"></td>
</tr>
<tr>
<td>text5</td><td><input type="checkbox"></td>
</tr>
</tbody>
</table>

$(function(){
    $("button").click(function () {
        $('#my_table').find('input[type=checkbox]').each(function(){
            if (! $(this).is(':checked'))
                $(this).closest('tr').hide();
        })
    });
});
Ответить с цитированием