Skip to main content

All Questions

0 votes
0 answers
94 views

No dialog role is announced by JAWS screen reader when dialog is appear in the screen

I have created a dialog component in react using MUI library. I am working on WCAG 2.0 integration and testing the component in Chrome + JAWS. No role "dialog" is announced by the screen ...
Vikash Kumar's user avatar
  • 1,111
0 votes
2 answers
1k views

How to make a div element navigable by arrow keys when using JAWS

I would like to make a div element navigable by arrow keys when JAWS is running. The div should not be navigable using the TAB key; so using tabindex is not applicable. Here is an example snippet of ...
aikind's user avatar
  • 127
1 vote
0 answers
261 views

JAWS reading document title multiple times on Edge

JAWS is reading document title multiple times on Edge. On Chrome it's working fine. I added react-helmet node package in my project and JAWS is reading the title multiple times on Edge. eg. My Title ...
Vijay W's user avatar
  • 41
1 vote
2 answers
2k views

Snackbars not read by screen reader when triggered from a dialog

Issue: We are triggering a snackbar from a button within a dialog and the snackbar is not being read. It reads fine when triggered from a button outside the dialog. Desired behavior: When the user ...
user1569333's user avatar
1 vote
0 answers
3k views

Screen reader is not announcing the title of the page

I am developing a single-page application that has multiple components in react. The react project is set up on top of the spring boot application. I am setting the title inside the useEffect using ...
Vikas Gs's user avatar
0 votes
0 answers
118 views

Role="alert" in IE while using JAWS

I'm using JAWS to make our application accessible. We have a lot of modals and popups. I've used role="alert", along with aria-live = "assertive", aria-modal="true" with moderate success. It works ...
Praveen's user avatar
0 votes
2 answers
1k views

NVDA and JAWS reading order using React

When using NVDA on Firefox, it reads in row-wise order in React. How can I change the reading order? Sample code: <Row1> <row-item-left>{some content1-left}</row-item-left> <...
syam vakkalanka's user avatar
0 votes
1 answer
199 views

Set Input ref value for screen reader

I am running into trouble trying to set the input ref value on a blueprintjs Select component. Visually, the component works fine but I need the current highlighted option to be read by a screen ...
its30's user avatar
  • 273
1 vote
1 answer
527 views

NVDA pick changes before react updates the html dom

Here I have an component which changes it's data dynamically. And we have a requirement to support both JAWS and NVDA. When I updated props from the parent component, the relevant component gets ...
Shashith Darshana's user avatar