I have this span element:
<span>Select the <strong>START</strong> <span class="icon-start></span> button.</span>
That is just a line that says "Select the START button" with a small icon after the word START.
Currently, Microsoft Narrator (in scan mode) reads "select the start" and then pauses at the icon and waits for the user to tell it to continue. I'm trying to make the Narrator read the entire line with zero interruptions or need for the user to tell it to continue.
So far here's what I've tried:
Add
aria-hidden="true",tabindex="-1", androle="presentationto the icon's<span>Wrapped the span in a
<div>and gave itaria-hidden="true",tabindex="-1", androle="presentationAdded a
role="heading"to the outer span -which works to make the Narrator reading everything uninterrupted, but he announces "Heading level 1" at first. If there's a way to prevent him from saying "heading" then that could work too.
Is there a role or aria attribute that tells the screen-reader to continue reading with no stopping?