New tabs UI not keyboard accessible
-
Hi, Takayuki –
The new tabs for managing Contact Form 7 panels aren’t accessible by keyboard. You’re using
tabindex=-1
on the inactive tabs, which means that they can’t be accessed from the keyboard.Using
tabindex=-1
means that the control can receive programmatic focus (e.g., you can assign focus using JavaScript$(this).focus()
); usingtabindex=0
means that the control is placed in the natural tab order. Since you’ve addedtabindex=-1
to both the anchor and the list item, the unfocused tabs can’t be reached from the keyboard.All you need to do is change it so that inactive tabs have tabindex of 0.
Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘New tabs UI not keyboard accessible’ is closed to new replies.