Labels aren’t properly associated to their inputs
-
The label elements that this plugin generates are simply
<label>Name</label>
. They need thefor
attribute to point to the correlated ID on the input that they are associated to.<label for="NAME">Name</label><input id="NAME" ... />
. Alternatively, putting the<input>
within the<label>
would also properly associate the labels.The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Labels aren’t properly associated to their inputs’ is closed to new replies.