I am creating a form with 7 checkbox fields. One of the checkbox fields needs to be checked, disabled, and still send the result. For example:
<form>
<input type="checkbox" value="checked"> Field Checked
</form>
How do I disable that but still get the "checked" value?
<form>
<input type="checkbox" value="checked"> Field Checked
</form>
How do I disable that but still get the "checked" value?