According to HTML specs, the select
tag in HTML doesn\'t have a readonly
attribute, only a disabled
attribute. So if you want to keep
What I found works great, with plain javascript (ie: no JQuery library required), is to change the innerHTML of the tag to the desired single remaining value.
Before:
Sample Javascript:
document.getElementById('day').innerHTML = '';
After:
This way, no visiual effect change, and this will POST/GET within the .