12 lines
190 B
JavaScript
12 lines
190 B
JavaScript
function checkall(checker)
|
|
{
|
|
$('input').each(function()
|
|
{
|
|
$(this).attr("checked", checker.checked)
|
|
});
|
|
}
|
|
$(function()
|
|
{
|
|
$('#' + type + 'Tab').addClass('active');
|
|
})
|