Is there any possible way to make dynamic values accessible for screen readers? The problem is if there is a value, it is read out but if there is no value, it is completely skipped by the screen-readers. However I want to read it out either as no value or null or something similar that could indicate disabled user that a particular value is not present or missing.
Using JAWS 19 with Chrome and IE.
Data Representation:
Payment Type Value
Cheque
Cash 20
DD
Issue: Now the issue is if there is value like 20 for Cash it is focused and announced. But if there is no value like for Cheque and DD it is completely skipped by JAWS.
I want JAWS to read it as blank/empty when the value will be not there.
Payment type and value are enclosed in a dl, dt and dd tags. Cannot share the actual code due to security reasons.