Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

form-basic-inputs.js 188B

1234567891011
  1. /**
  2. * Form Basic Inputs
  3. */
  4. 'use strict';
  5. (function () {
  6. // Indeterminate checkbox
  7. const checkbox = document.getElementById('defaultCheck2');
  8. checkbox.indeterminate = true;
  9. })();