I'm working on making a dynamic web application accessible to the visually impaired via screen readers, and I'm running into an annoying problem.When I test with NVDA Reader. Its not able to read dynamically added content.
Code is below:
<div id="section" aria-live="polite" role="alert">
<div id="floatDiv">
Some Data here
</div>
<div id="choices">
Some data here
</div>
</div>
I will be changing the section data dynamically. But NVDA Reader is not able to read newly added content. Has anyone ever seen this kind of behavior before?