Uploaded image for project: 'Jira Data Center'
  1. Jira Data Center
  2. JRASERVER-65684

Accessibility: Support for NVDA Screen Reader

XMLWordPrintable

    • Icon: Suggestion Suggestion
    • Resolution: Unresolved
    • None
    • None
    • None
    • 2
    • 4
    • We collect Jira feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

      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");
            });
          });
      

            Unassigned Unassigned
            znoorsazali Zul NS [Atlassian]
            Votes:
            7 Vote for this issue
            Watchers:
            7 Start watching this issue

              Created:
              Updated: