Skip to content Skip to sidebar Skip to footer

Already-selected Items Of Dropdown/combo Box Should Reflect As Selected On Click Over Label

I am using label for attribute for input elements in my website that will help blind users. I have Combobox/Drop down in my code to enter Date (Month/Day) format. Currently if ther

Solution 1:

if you change your label for to point related select attribute like below for month and day it will select when you click label.

<label for="ExpirationMonth">*Expiration Date</label>
<select id="ExpirationMonth" name="ExpirationMonth" tabindex="0">

Post a Comment for "Already-selected Items Of Dropdown/combo Box Should Reflect As Selected On Click Over Label"