-
Which is the new attribute of element that is used to change the appearance of checkbox?
-
- EI
- Target
- Media
- Indeterminate
- None of these
Correct Option: D
The indeterminate is actually not an attribute, it is the property of checkbox which can be change via JavaScript, e.g. Var checkbox=document.getElementById(“any-checkbox”); Checkbox.indeterminate=true;