Answers for "disabling the first option tag in a select html element"

1

select first option deselect

<option selected="true" disabled="disabled">Choose Tagging</option>
Posted by: Guest on October-23-2020
0

disable first option in select

<select>
   <option hidden>Choose</option>
   <option>Item 1</option>
   <option>Item 2</option>
</select>
Posted by: Guest on September-20-2021

Code answers related to "disabling the first option tag in a select html element"

Browse Popular Code Answers by Language