JAWS and WIA-ARIA - aria-hidden nesting
<div aria-hidden="true" class="div1">
Content of div1
<div aria-hidden="true" class="div2">
content of nested div with aria-hidden true
</div>
</div>
In the above scenario if i update the div1's aria-hidden false, jaws reader reads everything, even the text inside div2 with aria-hidden as true. Does it mean if we update parent element aria-hidden false all descendants are also set to aria-hiden to false.
Content of div1
<div aria-hidden="true" class="div2">
content of nested div with aria-hidden true
</div>
</div>
In the above scenario if i update the div1's aria-hidden false, jaws reader reads everything, even the text inside div2 with aria-hidden as true. Does it mean if we update parent element aria-hidden false all descendants are also set to aria-hiden to false.
Didnt found edit the above post.. i would like to add point to it.. that i am updating the div's aria-hidden to false using jquery.


