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
Below worked for me :
$('select[name=country]').attr("disabled", "disabled");