2025-04-02 13:24:56 +05:30

12 lines
188 B
JavaScript

/**
* Form Basic Inputs
*/
'use strict';
(function () {
// Indeterminate checkbox
const checkbox = document.getElementById('defaultCheck2');
checkbox.indeterminate = true;
})();