Home » HTML » HTML Attributes » Question
  1. Which is the new attribute of element that is used to change the appearance of checkbox?
    1. EI
    2. Target
    3. Media
    4. Indeterminate
    5. 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;



Your comments will be displayed only after manual approval.