Is it possible for NVDA to read only the dropdown select value when being loaded with aria live?
<div aria-live="polite">
<select>
<option>A</option>
<option selected>B</option>
<option>C</option>
<option></option>
</select>
</div>
Right now on firefox, it will read A,B,C with no notion of which one is selected. When having plenty of options this becomes an issue since all of the options are being read. Is there a way to mark the select to just read the selected value? "B"
Without aria live the dropdown select is read correctly, just reads "B". Is there a way to achieve this while inside aria live?