9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
$(function()
|
|
{
|
|
$('.check-all input[type=checkbox]').change(function()
|
|
{
|
|
var checked = $(this).prop('checked');
|
|
$(this).parents('tr').find('input[type=checkbox]').prop('checked', checked);
|
|
});
|
|
});
|