Files
Victor Alexandrovich Tsyrenschikov 0495a3069a Miroca_Server_file_static
2026-01-02 15:08:38 +05:00

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');
});
});