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
If you are using jquery validate, you can do the following below, I used the disabled attribute without a problem:
$(function(){ $('#myform').validate({ submitHandler:function(form){ $('select').removeAttr('disabled'); form.submit(); } }); });