0

What I am trying to do is to have a read-only Select tag and I found this post here HTML form readonly SELECT tag/input. It does works by putting this.blur() when it is on focus.

However, when I tried with IE, I still manage to access the list when I double click on the select tag. Is there any way I can disable that on IE?

Thanks.

Community
  • 1
  • 1
user1995781
  • 19,085
  • 45
  • 135
  • 236

2 Answers2

0

Can you just cover a transparent div above?

chunterg
  • 128
  • 1
  • 1
  • 9
0
<select name="xyz">
  <option disabled>Read Only</option>
  <option>Clickable</option>
  <option>Clickable</option>
  <option>Clickable</option>
</select>