0

Can we use role ="tablist" for div . As this is not properly working with Jaws. It looses the focus .

<div role="tablist">
    <h3>
        <div tabindex="-1" role="tab" aria-setsize="3" aria-posinset="2">
            Page 2
        </div>
    </h3>
</div>                 
<div role="tabpanel" aria-selected="false">                     
    <p>Test Slide div and looses focus.</p>                 
</div>
Our_Benefactors
  • 3,220
  • 3
  • 21
  • 27
user3045353
  • 1
  • 1
  • 3

1 Answers1

1
  • Add aria-multiselectable="true" to the tablist div
  • Add aria-labelledby="tab1" to the tabpanel div
  • Add id="tab1" to the tabindex div
  • Add id="panel1" aria-hidden="false" to the tabpanel div
  • Add aria-controls="panel1" aria-expanded="true" to the tabindex div

References

Our_Benefactors
  • 3,220
  • 3
  • 21
  • 27
Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265