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
I resolved it with jquery:
$("select.myselect").bind("focus", function(){ if($(this).hasClass('readonly')) { $(this).blur(); return; } });