I want to readonly select box. But I post value from that element. When I disabled it then select box can't post value.
<select name="office_name" id="office_name" readonly>
<option value="">----Select Office----</option>
<option value="1">Bengli</option>
<option value="2">English</option>
</select>
Readonly does not work but disabled work. But I need readonly not disabled. Is it Possible?