Details
-
Suggestion
-
Resolution: Unresolved
-
None
-
None
-
None
-
2
-
4
-
Description
Problem Definition
Users who are using NVDA Screen Reader will have trouble navigating the Issue View page as the main navigation usage is with Tab button.
Suggested Solution
Provide a way to allow users to tab across the details exist in Issue Navigator
Why this is important
NVDA Screen reader is one of the commonly use Screen Reader for Windows users.
Workaround
The administrator may add some customization in JIRA to allow tab throughout the issue. The following is an example:
// issue view - add 'role' and 'tabindex' every each list item on every contents of each tabs $('#customfield-tabs div[role=tabpanel]').each(function() { var ul = $(this).find('ul'); $(ul).attr("role", "list"); $(ul).find('li').each(function() { $(this).attr("role", "listitem"); $(this).attr("tabindex", "0"); }); });
Attachments
Issue Links
- is related to
-
JRASERVER-68124 Accessibility: Official Support for JAWS Screen Reader
- Gathering Interest
- relates to
-
JRASERVER-65242 Screen Readers Cannot Read Combo Box Options
-
- Closed
-
-
JRASERVER-65258 Fields Not Read By Screen Reader When Tabbing
-
- Gathering Impact
-