2
How could I inhibit the alteration of a checkbox
unused disabled
, given that I want to send it via form.
<input type="checkbox" name="option1" readonly="readonly" checked="checked"/>
// esta alterando
<input type="checkbox" name="option2" disabled="disabled" checked="checked"/>
// não envia pelo form
Thanks for sharing your solution, but I found in your reference another solution that for my case in particular suited better. I also shared.
– Antônio Medeiros