I have a form in which I need to turn off an array of checkboxes and several fields so that the user cannot change / change their values. When I submit the form, the POST values โโfor disabled items are missing / null. How can I control what I'm trying to do without this problem?
Now I will disable the fields by disconnecting the div container as follows:
#unselectable { -moz-user-select: -moz-none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; -webkit-user-select: none; cursor:not-allowed; }
bikey77
source share