How to create a checkbox that can not be changed value (readonly)

0

I would like to make the checkbox not change (readonly).

    
asked by anonymous 26.07.2017 / 05:34

1 answer

3

@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

    
26.07.2017 / 05:53