Disable a checkboxTag(s): Form
<INPUT TYPE="checkbox" NAME="MyCheckbox" VALUE="Select Me" DISABLED>
or
document.forms[0].MyCheckbox.disabled = false;
If your browser supports this feature, the following checkbox should be disabled.
Note :The visual is a little bit different of a plain-html rendering because of the framework used to build this site!