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
select
readonly
disabled
We could also use this
Disable all except the selected option:
1 2 3
This way the dropdown still works (and submits its value) but the user can not select another value.
Demo