1 2 3 4 5 6 7 8 9 10 11 | const $ = require('jquery'); const utils = require('./modules/utils'); $(document).ready(function () { $(':checkbox[data-checkbox-api-prefix]').change(function () { const $this = $(this); const prefix = $this.data('checkbox-api-prefix'); const id = $this.attr('id'); utils.toggleCheckbox(prefix, '#' + id); }); }); |