How can I make a checkbox always remain checked, regardless if someone tries to uncheck it. I cannot use the disabled method and readonly doesn't work.
Is there a small function that can do this?
--(Thanks)--
Printable View
How can I make a checkbox always remain checked, regardless if someone tries to uncheck it. I cannot use the disabled method and readonly doesn't work.
Is there a small function that can do this?
--(Thanks)--
just put
not sure if the event is
onClick or onCheck
let say it's onClick, do
onClick="this.checked=true;"