Difference between revisions of "Aria-labelledby multiple and hidden ids"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | Input with aria-labelledby pointing to 2 spans with ids - 1 shown 1 display none. | + | * Input with aria-labelledby pointing to 2 spans with ids - 1 shown 1 display none. |
+ | * 2nd input field also points to aria-labelledby from first and not "last name" | ||
<html> | <html> | ||
Line 5: | Line 6: | ||
<input type="text" aria-labelledby="a1 a2"> | <input type="text" aria-labelledby="a1 a2"> | ||
<span style="display:none;" id="a2">error message</span> | <span style="display:none;" id="a2">error message</span> | ||
+ | <span id="a3">Last Name</span> | ||
<input type="text" aria-labelledby="a1"> | <input type="text" aria-labelledby="a1"> | ||
</html> | </html> |
Latest revision as of 13:38, 6 May 2021
- Input with aria-labelledby pointing to 2 spans with ids - 1 shown 1 display none.
- 2nd input field also points to aria-labelledby from first and not "last name"
First Name Last Name