13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
$( document ).ready(function() {
|
|
$('.addoncheckbox').each(function() {
|
|
if($(this).is(':disabled')) {
|
|
$(this).parent().addClass('input-disabled');
|
|
}
|
|
});
|
|
|
|
|
|
$('.addoncheckbox').click(function() {
|
|
$(this).parent().toggleClass('input-checked', this.checked);
|
|
$(this).next().find('i').toggleClass('fa-plus fa-check');
|
|
});
|
|
}); |