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
another way of doing a readOnly attribute to a select element is by using css
readOnly
css
you could do like :
$('#selection').css('pointer-events','none');
DEMO