I would like to make the checkbox not change (readonly).
I would like to make the checkbox not change (readonly).
@CarlosHenrique, you can do something like:
<input type="checkbox" checked="checked" disabled> Checkbox
Note that it includes the disabled attribute in the input.
Follow a sample link: link